Chrome Extension Programming: Illustrating a Basic Survival Skill
1–10 of 25 posts
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#2Greasemonkey also appears to provide an interface for peristent local storage as well. [1]
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#3Having this ability on every platform you use can be very powerful indeed, which is why I always have a jailbroken/rooted phone to customize[1].
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#4If all you want to do is execute your own js on a certain web page, you can just use greasemonkey or another userscript extension for your browser instead of writing a whole new extension each for each script. Greasemonkey also appears to provide an interface for peristent local storage as well. [1] [1] http://wiki.greasespot.net/GM_setValue
(shameless plug - http://userscripts.org/scripts/show/178736)
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#5For viewing news.ycombinator.com on my larger monitor, I have it add 25% left and right margins. I also have it enlarge the article titles regardless of screen size so I don't have to zoom every time.
If you already know JavaScript, then it's really convenient and easy to pick up.
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#6If all you want to do is execute your own js on a certain web page, you can just use greasemonkey or another userscript extension for your browser instead of writing a whole new extension each for each script. Greasemonkey also appears to provide an interface for peristent local storage as well. [1] [1] http://wiki.greasespot.net/GM_setValue
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#7It doesn't auto run, but it is easy test, install on a new system (just a bookmark!), and extend with extra behavior that can be centralized. Additionally, an update immediately affects all clients.
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#8If all you want to do is execute your own js on a certain web page, you can just use greasemonkey or another userscript extension for your browser instead of writing a whole new extension each for each script. Greasemonkey also appears to provide an interface for peristent local storage as well. [1] [1] http://wiki.greasespot.net/GM_setValue
https://chrome.google.com/webstore/detail/control-freak/jgnc...
(Disclaimer: I wrote it originally, but no longer the maintainer.)
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#9If all you want to do is execute your own js on a certain web page, you can just use greasemonkey or another userscript extension for your browser instead of writing a whole new extension each for each script. Greasemonkey also appears to provide an interface for peristent local storage as well. [1] [1] http://wiki.greasespot.net/GM_setValue
Re: Chrome Extension Programming: Illustrating a Basic Survival Skill
#10I've taken to using a simple server on a public IP that serves different JS based on the referrer, and a bookmark for inserting a script tag in the current page. It doesn't auto run, but it is easy test, install on a new system (just a bookmark!), and extend with extra behavior that can be centralized. Additionally, an update immediately affects all clients.