Get Links
Quickly get url from selected link
Cos'è Get Links?
Get Links è un'estensione di Chrome sviluppata da Kaffeine, e la sua funzione principale è "Quickly get url from selected link".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Get Links
Scarica i file di estensione Get Links 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
Sometimes its annoying opening all link one by one to get the complete url, this extension copy all url from a selection on a website page.
Informazioni di Base sull'Estensione
Nome | |
ID | cmcenhpehcokkhgamlekcbgdlejddplp |
URL Ufficiale | https://chrome.google.com/webstore/detail/get-links/cmcenhpehcokkhgamlekcbgdlejddplp |
Descrizione | Quickly get url from selected link |
Dimensione del File | 18.9 KB |
Conteggio Installazioni | 390 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2015-01-25 |
Data di Pubblicazione | 2015-01-25 |
Valutazione | 1.50/5 Totale 2 Valutazioni |
Sviluppatore | Kaffeine |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "contextScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Quickly get url from selected link", "manifest_version": 2, "name": "Get Links", "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "clipboardWrite", "clipboardRead" ], "version": "0.2", "icons": { "16": "icon-bitty.png", "48": "icon-small.png", "128": "icon-large.png" }, "browser_action": { "default_icon": "icon-large.png", "default_title": "Get Links" } } |