MultiLinks Shortcut
This extension speed up opening several tabs you daily use.
What is MultiLinks Shortcut?
MultiLinks Shortcut is a Chrome extension developed by jrochelly, and its main feature is "This extension speed up opening several tabs you daily use.".
Extension Screenshots
Download MultiLinks Shortcut Extension CRX File
Download MultiLinks Shortcut 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
Multilink is a simple extension that lets you open several web pages at once. Just save the links you want on options page, than just click on multilink icon and ta-da. You can add as many pages as you want. Visit https://github.com/jrochelly/multilinks for troubleshooting and how to get involved.
Extension Basic Information
Name | MultiLinks Shortcut |
ID | ddfoagnhebpbidjkganhgninciiecgon |
Official URL | https://chromewebstore.google.com/detail/multilinks-shortcut/ddfoagnhebpbidjkganhgninciiecgon |
Description | This extension speed up opening several tabs you daily use. |
File Size | 49.66 KB |
Installation Count | 1,193 |
Current Version | 0.3.2 |
Last Updated | 2015-07-02 |
Publish Date | 2015-07-01 |
Rating | 3.67/5 Total 3 Ratings |
Developer | jrochelly |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MultiLinks Shortcut", "description": "This extension speed up opening several tabs you daily use.", "version": "0.3.2", "options_page": "options.html", "commands": { "toggle-feature": { "description": "Open links", "suggested_key": { "default": "Alt+Shift+L", "mac": "Alt+Shift+L" } } }, "content_scripts": [ { "matches": [ "http:\/\/jquery.com\/*" ], "js": [ "js\/jquery.js" ], "run_at": "document_end" } ], "icons": { "16": "imgs\/icon16.png", "48": "imgs\/icon48.png", "128": "imgs\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "storage", "tabs", "http:\/\/ajax.googleapis.com\/" ] } |