9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
What is 9gag Downloader?
9gag Downloader is a Chrome extension developed by Ricardo Carvalho, and its main feature is "Extension to assist in sharing memes through the best humorous website 9GAG".
Extension Screenshots
Download 9gag Downloader Extension CRX File
Download 9gag Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
Official URL | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Description | Extension to assist in sharing memes through the best humorous website 9GAG |
File Size | 276 KB |
Installation Count | 184 |
Current Version | 1.1 |
Last Updated | 2022-01-15 |
Publish Date | 2019-09-11 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Ricardo Carvalho |
[email protected] | |
Payment Type | free |
Extension Website | http://galdar.com.br/ |
Help Page URL | https://github.com/Darciro/9gag-downloader |
Supported Languages | 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 } |