GramGrabber
Copy the link to an Instagram image to your clipboard.
O que é GramGrabber?
GramGrabber é uma extensão do Chrome desenvolvida por emptyset, e sua principal característica é "Copy the link to an Instagram image to your clipboard.".
Baixar o arquivo CRX da Extensão GramGrabber
Baixe arquivos de extensão GramGrabber no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
- 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.
Informações Básicas da Extensão
Nome | GramGrabber |
ID | bpghmpfldmkldeehcccbgebkldnbkpfm |
URL Oficial | https://chromewebstore.google.com/detail/gramgrabber/bpghmpfldmkldeehcccbgebkldnbkpfm |
Descrição | Copy the link to an Instagram image to your clipboard. |
Tamanho do Arquivo | 88.3 KB |
Contagem de Instalações | 20 |
Versão Atual | 1.0.0 |
Última Atualização | 2015-12-10 |
Data de Publicação | 2015-12-10 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | emptyset |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } } |