9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
什么是9gag Downloader?
9gag Downloader是由Ricardo Carvalho开发的Chrome扩展程序,该扩展的主要功能是“Extension to assist in sharing memes through the best humorous website 9GAG”。
扩展截图
下载9gag Downloader扩展crx文件
下载9gag Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
官方URL | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
简介 | Extension to assist in sharing memes through the best humorous website 9GAG |
文件大小 | 276 KB |
安装次数 | 184 |
当前版本 | 1.1 |
更新时间 | 2022-01-15 |
上架时间 | 2019-09-11 |
评分 | 5.00/5 共1次评分 |
开发者 | Ricardo Carvalho |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://galdar.com.br/ |
帮助页面URL | https://github.com/Darciro/9gag-downloader |
支持的语言 | 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 } |