9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
O que é 9gag Downloader?
9gag Downloader é uma extensão do Chrome desenvolvida por Ricardo Carvalho, e sua principal característica é "Extension to assist in sharing memes through the best humorous website 9GAG".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão 9gag Downloader
Baixe arquivos de extensão 9gag Downloader 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
Extension to help you share memes through the best 9GAG humor site. It has a simple button to download the viewed video or image and then share smiles.
Informações Básicas da Extensão
Nome | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
URL Oficial | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Descrição | Extension to assist in sharing memes through the best humorous website 9GAG |
Tamanho do Arquivo | 276 KB |
Contagem de Instalações | 184 |
Versão Atual | 1.1 |
Última Atualização | 2022-01-15 |
Data de Publicação | 2019-09-11 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Ricardo Carvalho |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://galdar.com.br/ |
URL da Página de Ajuda | https://github.com/Darciro/9gag-downloader |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "9gag Downloader", "version": "1.1", "description": "Extension to assist in sharing memes through the best humorous website 9GAG", "permissions": [ "activeTab", "declarativeContent", "storage", "tabs", "https:\/\/9gag.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/images\/9gag-icon-16.png", "32": "assets\/images\/9gag-icon-32.png", "48": "assets\/images\/9gag-icon-48.png", "64": "assets\/images\/9gag-icon-64.png", "128": "assets\/images\/9gag-icon-128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/9gag.com\/*" ], "js": [ "jquery-3.3.1.min.js", "download.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |