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 |
官方網址 | 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 } |