9gag Downloader
Extension to assist in sharing memes through the best humorous website 9GAG
9gag Downloader là gì?
9gag Downloader là một tiện ích mở rộng Chrome được phát triển bởi Ricardo Carvalho, và tính năng chính của nó là "Extension to assist in sharing memes through the best humorous website 9GAG".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng 9gag Downloader
Tải xuống các tệp mở rộng 9gag Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | 9gag Downloader |
ID | cipeepjilkbilfmpjalegdlgmgoimjii |
URL Chính Thức | https://chromewebstore.google.com/detail/9gag-downloader/cipeepjilkbilfmpjalegdlgmgoimjii |
Mô tả | Extension to assist in sharing memes through the best humorous website 9GAG |
Kích Thước Tệp | 276 KB |
Số Lần Cài Đặt | 184 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2022-01-15 |
Ngày Phát Hành | 2019-09-11 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Ricardo Carvalho |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://galdar.com.br/ |
URL Trang Trợ Giúp | https://github.com/Darciro/9gag-downloader |
Ngôn Ngữ Được Hỗ Trợ | 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 } |