GramGrabber
Copy the link to an Instagram image to your clipboard.
Co to jest GramGrabber?
GramGrabber to rozszerzenie Chrome opracowane przez emptyset, a jego główną funkcją jest „Copy the link to an Instagram image to your clipboard.”.
Pobierz plik CRX rozszerzenia GramGrabber
Pobierz pliki rozszerzeń GramGrabber w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
- 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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bpghmpfldmkldeehcccbgebkldnbkpfm |
| Oficjalny URL | https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm |
| Opis | Copy the link to an Instagram image to your clipboard. |
| Rozmiar pliku | 88.3 KB |
| Liczba instalacji | 20 |
| Aktualna Wersja | 1.0.0 |
| Ostatnia Aktualizacja | 2015-12-10 |
| Data Publikacji | 2015-12-10 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | emptyset |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
}
} | |