go/chrome-extension
URL Shortener
What is go/chrome-extension?
go/chrome-extension is a Chrome extension developed by emdgoudie, and its main feature is "URL Shortener".
Extension Screenshots
Download go/chrome-extension Extension CRX File
Download go/chrome-extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Shortcut system allowing you to specify a word or name that refers to a website, which can be typed in to the browser after 'go/' to go to that website. Example go/fb/ links to facebook.com
Extension Basic Information
Name | go/chrome-extension |
ID | bpnjclopmljjlkpjahpjeghdfpefbphg |
Official URL | https://chromewebstore.google.com/detail/gochrome-extension/bpnjclopmljjlkpjahpjeghdfpefbphg |
Description | URL Shortener |
File Size | 326 KB |
Installation Count | 298 |
Current Version | 1.8 |
Last Updated | 2022-06-18 |
Publish Date | 2020-07-05 |
Rating | 1.00/5 Total 1 Ratings |
Developer | emdgoudie |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "go\/chrome-extension", "version": "1.8", "description": "URL Shortener", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup\/index.html" }, "permissions": [ "webRequestBlocking", "webRequest", "storage", "*:\/\/go\/*" ], "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } } |