GramGrabber
Copy the link to an Instagram image to your clipboard.
Vad är GramGrabber?
GramGrabber är en Chrome-tillägg utvecklad av emptyset, och dess huvudfunktion är "Copy the link to an Instagram image to your clipboard.".
Ladda ner GramGrabber-förlängningens CRX-fil
Ladda ner GramGrabber-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
- 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. Grundläggande Information om Tillägg
| Namn | |
| ID | bpghmpfldmkldeehcccbgebkldnbkpfm |
| Officiell webbadress | https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm |
| Beskrivning | Copy the link to an Instagram image to your clipboard. |
| Filstorlek | 88.3 KB |
| Antal Installationer | 20 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2015-12-10 |
| Publiceringsdatum | 2015-12-10 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | emptyset |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
} | |