GramGrabber
Copy the link to an Instagram image to your clipboard.
Cos'è GramGrabber?
GramGrabber è un'estensione di Chrome sviluppata da emptyset, e la sua funzione principale è "Copy the link to an Instagram image to your clipboard.".
Scarica il file CRX dell'estensione GramGrabber
Scarica i file di estensione GramGrabber 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
- Visit a page on Instagram and click to view the larger image in the modal. - You can now Right Click and Select 'GramGrabber' from the Right Click Menu. - The Link to the image is now on your clipboard and ready to be pasted.
Informazioni di Base sull'Estensione
Nome | GramGrabber |
ID | bpghmpfldmkldeehcccbgebkldnbkpfm |
URL Ufficiale | https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm |
Descrizione | Copy the link to an Instagram image to your clipboard. |
Dimensione del File | 88.3 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2015-12-10 |
Data di Pubblicazione | 2015-12-10 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | emptyset |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GramGrabber", "description": "Copy the link to an Instagram image to your clipboard.", "version": "1.0.0", "icons": { "16": "gramgrabber-icon-small.png", "128": "gramgrabber-icon-large.png" }, "permissions": [ "contextMenus", "*:\/\/*.instagram.com\/*", "clipboardWrite" ], "content_scripts": [ { "matches": [ "*:\/\/*.instagram.com\/*" ], "js": [ "jquery-2.1.4.js", "gramGrabber.js" ] } ], "background": { "persistent": true, "scripts": [ "gramGrabberbg.js" ] } } |