GramGrabber
Copy the link to an Instagram image to your clipboard.
Что такое GramGrabber?
GramGrabber - это расширение Chrome, разработанное emptyset, и его основная функция - "Copy the link to an Instagram image to your clipboard.".
Скачать файл CRX расширения GramGrabber
Скачайте файлы расширений GramGrabber в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- 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.
Основная информация о расширении
Название | GramGrabber |
ID | bpghmpfldmkldeehcccbgebkldnbkpfm |
Официальный URL | https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm |
Описание | Copy the link to an Instagram image to your clipboard. |
Размер файла | 88.3 KB |
Количество установок | 20 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2015-12-10 |
Дата публикации | 2015-12-10 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | emptyset |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } } |