9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
Vad är 9gag Downloader?
9gag Downloader är en Chrome-tillägg utvecklad av Ricardo Carvalho, och dess huvudfunktion är "Extension to assist in sharing memes through the best humorous website 9GAG".
Tilläggsskärmbilder
Ladda ner 9gag Downloader-förlängningens CRX-fil
Ladda ner 9gag Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
Officiell webbadress | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Beskrivning | Extension to assist in sharing memes through the best humorous website 9GAG |
Filstorlek | 276 KB |
Antal Installationer | 184 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2022-01-15 |
Publiceringsdatum | 2019-09-11 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Ricardo Carvalho |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://galdar.com.br/ |
Hjälpsida URL | https://github.com/Darciro/9gag-downloader |
Stödda Språk | 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 } |