9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
Hvad er 9gag Downloader?
9gag Downloader er en Chrome-udvidelse udviklet af Ricardo Carvalho, og dens hovedfunktion er "Extension to assist in sharing memes through the best humorous website 9GAG".
Udvidelsesskærmbilleder
Download 9gag Downloader-udvidelses-CRX-fil
Download 9gag Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
Officiel URL | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Beskrivelse | Extension to assist in sharing memes through the best humorous website 9GAG |
Filstørrelse | 276 KB |
Antal Installationer | 184 |
Nuværende Version | 1.1 |
Senest Opdateret | 2022-01-15 |
Udgivelsesdato | 2019-09-11 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Ricardo Carvalho |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://galdar.com.br/ |
Hjælpeside-URL | https://github.com/Darciro/9gag-downloader |
Understøttede Sprog | 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 } |