Tampermonkey stores the scripts in a Sqlite database. Not very source-controlly. Hence this repository.
- IMDB Piratebay link: Add a download button on IMDB.
- Password Revealer: Add show/hide button next to each password input.
Turn on "Developer mode" and use Load unpacked
:
chrome://extensions
At chrome://extensions
, click Details
and then Extension options
.
Configure extension shortcuts:
chrome://extensions/shortcuts
Option 1: Switch to Chrome Canary
Option 2: Download policy templates
- Put
policy_templates\windows\admx\chrome.admx
inc:\windows\policydefinitions
- Put
policy_templates\windows\admx\[yourlanguage]\chrome.adml
inc:\windows\policydefinitions\[yourlanguage]\chrome.adml
- Start
gpedit.msc
- Go to User Configuration > Administrative Templates > Google Chrome > Extensions
- Open "Configure extension installation whitelist"
- Enable the policy
- Click the "Show..." button
Browse to chrome://extensions
and add the ids of your UserScripts to the whitelist.
The ID is in the url when opening the extension details.
Blog post with more information
Need to click the refresh button in chrome://extensions
for any change to have effect!
All scripts are vanilla JS and jQuery scripts but could switch to Chrome Content Scripts
Chrome stores the extensions here:
(Changes made here are ignored/overwritten)
Windows Vista/7/8:
Chrome : %LocalAppData%\Google\Chrome\User Data\Default\Extensions\
Chromium: %LocalAppData%\Chromium\User Data\Default\Extensions\
Linux:
Chrome : ~/.config/google-chrome/Default/Extensions/
Chromium: ~/.config/chromium/Default/Extensions/
Mac OS X:
Chrome : ~/Library/Application Support/Google/Chrome/Default/Extensions/
Chromium: ~/Library/Application Support/Chromium/Default/Extensions/
See Stackoverflow: Manually adding a Userscript to Google Chrome for more information.