Posts

Showing posts with the label Chrome

New blog domain: kula.blog

It's still work in progress but new posts will be published on  https://kula.blog/ Thanks to 11ty base blog RSS is working from the start so it should be easy to add to your reader if you still use any :) If now then I hope you can sign up to the newsletter where I'll be publishing new posts and interesting articles to it from time to time. Please use  kula.blog  from now on.

Tape Lines in Chrome

Image
I've found new Chrome extension for lines that helps to visually align elements on website. https://chrome.google.com/webstore/detail/jmfleijdbicilompnnombcbkcgidbefb

Chrome - Install Extension From Your Website

This can be really helpful to promote your chrome extension. http://code.google.com/chrome/webstore/docs/inline_installation.html With this API it can be easy to ask users to install extension without browser sniffing and content script just to disable promotional popup on site when extension in already installed.

Chrome Extensions Manager

Awesome Extension for all of the people that have too many extensions, and mix of them from both home and work. https://chrome.google.com/webstore/detail/aalnjolghjkkogicompabhhbbkljnlka With this extension I can easily choose which extensions should run at home, and which at work.

Advanced REST Client for Chrome

https://chrome.google.com/webstore/detail/ahdjpgllmllekelefacdedbjnjaplfjn?hl=pl#

Advanced REST Client for Chrome

https://chrome.google.com/webstore/detail/ahdjpgllmllekelefacdedbjnjaplfjn?hl=pl#

Chrome Dev Tools

Image
http://paulirish.com/2011/a-re-introduction-to-the-chrome-developer-tools/

Display JavaScript Errors in Chrome

In Chrome it is easy to overlook the JavaScript errors, but there is extension for it: https://chrome.google.com/webstore/detail/jafmfknfnkoekkdocjiaipcnmkklaajd

REST Console for Chrome

https://chrome.google.com/webstore/detail/faceofpmfclkengnkgkgjkcibdbhemoc# Project page:  http://code.google.com/p/rest-console/

Speech input in Chrome

Image
http://www.updt.me/go?item=google-chrome-now-supports-speech-input-via-html5-you-can-now-talk-to-your&t=tw

Iframe src html content

This chrome example extension: http://code.google.com/chrome/extensions/samples.html#597015d3bcce3da693b02314afd607bec4f55291 in feed.html creates html to assign to src attribute of iframe: http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_a11y/feed.html?content-type=text/plain   desc.src="data:text/html," + iframe_src + itemDesc + ""; But if You try this there is problem with encoding within IFRAME, at least for everything else than ASCII... To sole this I recommend reading: http://msdn.microsoft.com/en-us/library/cc848897(v=vs.85).aspx Especially:  http://www.ietf.org/rfc/rfc2397.txt Finally, fix looks like this: desc.src="data:text/html; charset=\"UTF-8\" ," + iframe_src + itemDesc + "";

Google Chrome Hosted Apps Tutorial

Image
I have installed some Google Chrome Apps but most of them are simply Bookmarks to sites. Lets build that bookmark! How to build it:  http://code.google.com/chrome/apps/docs/developers_guide.html This is all You need to build it... but this is not the end... If You want to pay 5$ and host Your app on Google App Store go to  https://chrome.google.com/webstore/developer/dashboard  and upload zip file with Your app. I don't want to pay, at least yet so I will try to host it by myself...  Pack it Youself:  http://code.google.com/chrome/extensions/packaging.html After packaging put app.crx to your server and app.pem to some secure place (encrypted pendrive ?) My App: Interia.pl   Code:  https://github.com/krzychukula/interia Installation:  This is problematic because host is different than site that host app sot to install it You must download it to a file (right click) and later install it from downloaded file :) Download it from googl...

Chrome flags

Want to try experimental functions in chrome? Try:  about:flags ==Edit== In newer Chrome versions it is  chrome://flags/

Vimium - Vim in Google Chrome

Want to use Vim shortcuts in Chrome? This extension is for You! https://chrome.google.com/webstore/detail/dbepggeogbaibhgnhhndojpepiihcmeb hint: ? - displays options :) For Firefox:  http://vimperator.org/