Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4039532
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:37:33+00:00 2026-05-20T12:37:33+00:00

Instead of installing User-Scripts I found many tutorials on the web to add it

  • 0

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://example.com/*
// @version        1.0
// ==/UserScript==

alert(0);

What am I doing wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T12:37:34+00:00Added an answer on May 20, 2026 at 12:37 pm

    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 sites like OpenUserJS, MonkeyGuts, etc.

    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 a right pain on Chrome these days…

    Chrome After about August, 2014:

    You can still drag a file to the extensions page and it will work… Until you restart Chrome. Then it will be permanently disabled. See Continuing to "protect" Chrome users from malicious extensions for more information. Again, Tampermonkey is the smart way to go. (Or switch browsers altogether to Opera or Firefox.)

    Chrome 21+

    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://extensions in the address input).

    #Older Chrome versions:

    Merely drag your *.user.js files into any Chrome window. Or click on any Greasemonkey script-link.

    You’ll get an installation warning:
    Initial warning

    Click Continue.

    You’ll get a confirmation dialog:
    ![confirmation dialog][8]

    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.

    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":          [   "https://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 a 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.

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

    2. Click the Load unpacked extension… button.

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

    4. Your script is now installed, and operational!

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

    Reload link



    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.