MultiLinks Shortcut
This extension speed up opening several tabs you daily use.
Cos'è MultiLinks Shortcut?
MultiLinks Shortcut è un'estensione di Chrome sviluppata da jrochelly, e la sua funzione principale è "This extension speed up opening several tabs you daily use.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MultiLinks Shortcut
Scarica i file di estensione MultiLinks Shortcut in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | MultiLinks Shortcut |
ID | ddfoagnhebpbidjkganhgninciiecgon |
URL Ufficiale | https://chromewebstore.google.com/detail/multilinks-shortcut/ddfoagnhebpbidjkganhgninciiecgon |
Descrizione | This extension speed up opening several tabs you daily use. |
Dimensione del File | 49.66 KB |
Conteggio Installazioni | 1,193 |
Versione Corrente | 0.3.2 |
Ultimo Aggiornamento | 2015-07-02 |
Data di Pubblicazione | 2015-07-01 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | jrochelly |
Tipo di Pagamento | free |
Lingue Supportate | 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\/" ] } |