Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Instead of "installing" User-Scripts I found many tutorials on the web to add it manually. All of them told me to do the same steps:

  • Make the directory C:\Users\Blabla\AppData\Local\Google\Chrome\User Data\Default\User Scripts
  • Place a .js file there, which contains the User-Script
  • Start Chrome with the parameter --enable-user-scripts

I did so - but my demo script does not do anything:

// ==UserScript==
// @name           Test
// @description    Test
// @include        http://stackoverflow.com/*
// @version        1.0
// ==/UserScript==

alert(0);

Anyone got an idea what I was doing wrong? Thank you very much in advance!

Kind regards.

share|improve this question

3 Answers

up vote 79 down vote accepted

The best thing to do is to install the Tampermonkey extension.

This will allow you to easily install Greasemonkey scripts, and to easily manage them. Also it makes it easier to install userscripts directly from userscripts.org.

Finally, it unlocks most all of the GM functionality that you don't get by installing a GM script directly with Chrome. That is, more of what GM on Firefox can do, is available with Tampermonkey.


But, if you really want to install a GM script directly, it's easy on Chrome these days (but see note 2, below).

Merely drag your *.user.js files into any Chrome window. Or click See note 2 on any Greasemonkey script-link. (See userscripts.org for a nice collection of scripts.)

You'll get an installation warning:
Initial warning

Click Continue.


You'll get a confirmation dialog:
confirmation dialog

Click Add.


Notes:

  1. Scripts installed this way have limitations compared to a Greasemonkey (Firefox) script or a Tampermonkey script. See Cross-browser user-scripting, Chrome section.

  2. Chrome is changing the way extensions are installed. Userscripts are pared-down extensions on Chrome but. Starting in Chrome 21, link-click behavior is disabled for userscripts. To install a user script, drag the *.user.js file into the Extensions page (chrome://chrome/extensions in the address input).


Controlling the Script and name:

By default, Chrome installs scripts in the Extensions folder1, full of cryptic names and version numbers. And, if you try to manually add a script under this folder tree, it will be wiped the next time Chrome restarts.

To control the directories and filenames to something more meaningful, you can:

  1. Create a directory that's convenient to you, and not where Chrome normally looks for extensions. For example, Create: C:\MyChromeScripts\.

  2. For each script create its own subdirectory. For example, HelloWorld.

  3. In that subdirectory, create or copy the script file. For example, Save this question's code as: HelloWorld.user.js.

  4. You must also create a manifest file in that subdirectory, it must be named: manifest.json.

    For our example, it should contain:

    {
        "manifest_version": 2,
        "content_scripts": [ {
            "exclude_globs":    [  ],
            "include_globs":    [ "*" ],
            "js":               [ "HelloWorld.user.js" ],
            "matches":          [   "http://stackoverflow.com/*",
                                    "https://stackoverflow.com/*"
                                ],
            "run_at": "document_end"
        } ],
        "converted_from_user_script": true,
        "description":  "My first sensibly named script!",
        "name":         "Hello World",
        "version":      "1"
    }
    

    The manifest.json file is automatically generated from the meta-block by Chrome, when an user script is installed. The values of @include and @exclude meta-rules are stored in include_globs and exclude_globs, @match (recommended) is stored in the matches list. "converted_from_user_script": true is required if you want to use any of the supported GM_* methods.

  5. Now, in Chrome's Extension manager (URL = chrome://extensions/), Expand "Developer mode".

  6. Click the Load unpacked extension... button.

  7. For the folder, paste in the folder for your script, In this example it is: C:\MyChromeScripts\HelloWorld.

  8. Your script is now installed, and operational!

  9. If you make any changes to the script source, hit the Reload link for them to take effect.




1 The folder defaults to:

Windows XP:
  Chrome  : %AppData%\..\Local Settings\Application Data\Google\Chrome\User Data\Default\Extensions\
  Chromium: %AppData%\..\Local Settings\Application Data\Chromium\User Data\Default\Extensions\

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/

Although you can change it by running Chrome with the --user-data-dir= option.

share|improve this answer
Sorry, seems as if I didn't point out my problem exactly. I am not having problems installing Userscripts the usual way. I want to make these scripts by myself and I don't want to treat them as an extension. The possibility which I always found on the internet, which tells me to put them in the "User Scripts"-directory simply doesn't work. And I'm trying to find a solution for that. – YMMD Mar 10 '11 at 12:22
No, that is not what I intend to do. In the past I developed some userscripts using Firefox, at the moment I prefer surfing with Chrome and for that reason I would like to test them in Chrome. When installing an empty userscript and editing it the way I want it to work the "Extensions"-directory rapidly becomes full of folders with cryptic names and it will always take time to look for the folder which actually contains the file which i'd like to edit. That's all. – YMMD Mar 10 '11 at 22:51
4  
Thank you very much! This makes everything very easily to handle. Your description is very detailed and well structured, thank you for making the effort! (: – YMMD Mar 11 '11 at 15:46
You're welcome. Glad to help. – Brock Adams Mar 11 '11 at 23:05
2  
@ColonelPanic, Sadly, no you can't. The auto generated manifest is currently not compatible with the extension process! It doesn't use "manifest_version": 2, which is now required. Use the example in the answer as your starting copy (or at least don't forget the "manifest_version": 2). ... Google is setting up all "normal" userscripts to fail in a pending release, unless they change the auto-manifest process soon. – Brock Adams Dec 18 '12 at 0:34
show 9 more comments

Yeah, the new state of affairs sucks. Fortunately it's not so hard as the other answers imply.

  1. Browse in Chrome to chrome://extensions
  2. Drag the .js file into that page.

Voila. You can also drag files from the downloads footer bar to the extensions tab.

<3 Freedom.

share|improve this answer
4  
be sure that the file name is like <scriptname>.user.js, otherwise chrome doesn't recognize it as extension – Paco Dec 31 '12 at 12:09

This parameter is is working for me:

--enable-easy-off-store-extension-install
share|improve this answer
I got that from superuser.com/questions/450893/… – joeytwiddle Jul 26 '12 at 5:49
An earlier appearance was here: userscripts.org/topics/113176 – joeytwiddle Jul 26 '12 at 5:51
Administrators can also create a policy for all users, with allowed URLs whitelisted by pattern: chromium.org/administrators/… – joeytwiddle Jul 26 '12 at 6:06
Do I really need to delete the old script and install it completely new by dragging it into the browser again when I edited stuff? Or is there an easier way? – YMMD Aug 16 '12 at 21:28
To update a script, I navigate to it on filesystem or webserver, and click to install; Chrome overwrites the old version. If you are developing a script and don't want to keep installing it, try a bookmarklet/userscript hybrid: stackoverflow.com/questions/1810885/… – joeytwiddle Sep 28 '12 at 10:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.