9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
Was ist 9gag Downloader?
9gag Downloader ist eine Chrome-Erweiterung, die von Ricardo Carvalho entwickelt wurde, und ihr Hauptmerkmal ist "Extension to assist in sharing memes through the best humorous website 9GAG".
Erweiterungsscreenshots
9gag Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie 9gag Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
Offizielle URL | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Beschreibung | Extension to assist in sharing memes through the best humorous website 9GAG |
Dateigröße | 276 KB |
Installationsanzahl | 184 |
Aktuelle Version | 1.1 |
Letztes Update | 2022-01-15 |
Veröffentlichungsdatum | 2019-09-11 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Ricardo Carvalho |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://galdar.com.br/ |
Hilfeseite URL | https://github.com/Darciro/9gag-downloader |
Unterstützte Sprachen | 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 } |