How does one install an extension for Chrome browser from the local file system?
Asked
Active
Viewed 9.4k times
3 Answers
71
Found a set of instructions online for loading your own custom extension:
- Navigate to
chrome://extensions- Expand the Developer dropdown menu and click “Load Unpacked Extension”
- Navigate to the local folder containing the extension’s code and click Ok
- Assuming there are no errors, the extension should load into your browser
Rory O'Kane
- 758
- 1
- 7
- 19
paradd0x
- 9,149
- 7
- 37
- 44
-
Ok, updated the answer to include the correct way to upload extensions into your browser. I tested it on my own and it worked. – paradd0x Feb 18 '11 at 21:50
-
Here is the link from where I got those instructions. http://www.blackweb20.com/2010/01/11/creating-your-own-google-chrome-extension/ – paradd0x Feb 18 '11 at 21:52
-
If this worked for you, please mark it as an answer! Thanks! – paradd0x Feb 19 '11 at 04:27
-
Thanks. Gots to click the "Developer" check box nowadays, too – Kirby May 27 '16 at 18:05
-
**Note** Your unpacked extension is somewhat „hot linked“ to its original place. It is NOT copied to the profile folder, changes e.g. on styles still have direct effect. That is GOOD for a developer (instant feedback on changes, little “deployment” hassle), this is BAD if you then remove the extension folder (believing, it got copied into the profile folder... Nope, it didn't.) – Frank N Dec 18 '19 at 10:19
29
What kind of extension is it? Is it a .CRX file? A (possibly ZIP’d) folder? A .JS user-script? The process differs for each.
- CRX:
- Drag and drop the .CRX file onto the page
chrome://extensions - Click the Install button in the prompt at the bottom of the screen
- Drag and drop the .CRX file onto the page
- Folder:
- If it is ZIP’d, extract the contents somewhere
- In Chrome, open
chrome://extensions/ - Click + Developer mode
- Click Load unpacked extension…
- Navigate to the extension’s folder and click OK
- Delete the (extracted) folder (the extension was copied)
- User Script:
- Exit Chrome (all windows)
- Copy the .JS file to the
User Scriptsfolder in yourUser Datafolder - Run Chrome
Synetech
- 68,243
- 36
- 223
- 356
-
1Chrome doesn't by default allow you to install custom .crx extensions anymore. There must be an option for this, but I can't seem to find it. – agnoster Oct 17 '12 at 14:09
-
4@agnoster, you can still use extensions from other than the webstore, but you *must* drop it into `chrome://extensions` now. – Synetech Oct 17 '12 at 18:12
-
@Synetech - Is this still a valid way? Can I use this to migrate extensions not available on App Store to new PC? – Alex S Aug 20 '15 at 11:39
-
0
To install a user script, the file must have a suffix of .user, like my_script.user.js.
Caqu
- 101
- 2