GramGrabber
Copy the link to an Instagram image to your clipboard.
Qu'est-ce que GramGrabber ?
GramGrabber est une extension Chrome développée par emptyset, et sa fonction principale est "Copy the link to an Instagram image to your clipboard.".
Télécharger le fichier CRX de l'extension GramGrabber
Téléchargez les fichiers d'extension GramGrabber au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
- 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.
Informations de Base sur l'Extension
Nom | GramGrabber |
ID | bpghmpfldmkldeehcccbgebkldnbkpfm |
URL Officiel | https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm |
Description | Copy the link to an Instagram image to your clipboard. |
Taille du Fichier | 88.3 KB |
Nombre d'Installations | 20 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2015-12-10 |
Date de Publication | 2015-12-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | emptyset |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |