Short Cut for URL mapper
This extension will translate the URL in address bar
Cos'è Short Cut for URL mapper?
Short Cut for URL mapper è un'estensione di Chrome sviluppata da lwpro2, e la sua funzione principale è "This extension will translate the URL in address bar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Short Cut for URL mapper
Scarica i file di estensione Short Cut for URL mapper 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
Tired of remembering the URLs ? Short Cut for URL mapper would enable you to configure the keyword to long URL mapping.
Informazioni di Base sull'Estensione
Nome | Short Cut for URL mapper |
ID | lafchflokhmpcoaondfeffplkdnoaelh |
URL Ufficiale | https://chromewebstore.google.com/detail/short-cut-for-url-mapper/lafchflokhmpcoaondfeffplkdnoaelh |
Descrizione | This extension will translate the URL in address bar |
Dimensione del File | 629 KB |
Conteggio Installazioni | 17 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-06-11 |
Data di Pubblicazione | 2016-06-11 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | lwpro2 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Short Cut for URL mapper", "description": "This extension will translate the URL in address bar", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "commands": { "toggle": { "suggested_key": { "default": "Alt+Shift+A", "mac": "Command+Shift+Y" }, "description": "Display Id and URL of the current open\/active tab.", "global": true } }, "omnibox": { "keyword": "sc" }, "permissions": [ "tabs", "activeTab", "storage", "http:\/\/*.google.com\/", "https:\/\/*.google.com\/" ] } |