9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
Wat is 9gag Downloader?
9gag Downloader is een Chrome-extensie ontwikkeld door Ricardo Carvalho, en de belangrijkste functie is "Extension to assist in sharing memes through the best humorous website 9GAG".
Extensie Screenshots
Download het CRX-bestand van de extensie 9gag Downloader
Download 9gag Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
Officiële URL | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Beschrijving | Extension to assist in sharing memes through the best humorous website 9GAG |
Bestandsgrootte | 276 KB |
Aantal Installaties | 184 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2022-01-15 |
Publicatiedatum | 2019-09-11 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Ricardo Carvalho |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://galdar.com.br/ |
Help Pagina-URL | https://github.com/Darciro/9gag-downloader |
Ondersteunde Talen | 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 } |