FareDownload
A download extension for wechat article page
FareDownload là gì?
FareDownload là một tiện ích mở rộng Chrome được phát triển bởi faremax.yc, và tính năng chính của nó là "A download extension for wechat article page".
Ả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 FareDownload
Tải xuống các tệp mở rộng FareDownload 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
qq文章页的视频、音频、图片下载。 由于其视频、音频地址是动态读取的,请在下载前先点击播放,并等待广告结束(如果有)。 更多功能及平台支持将陆续更新。
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | FareDownload |
ID | acalbnhbfofimekdekbfiiioepnndnih |
URL Chính Thức | https://chromewebstore.google.com/detail/faredownload/acalbnhbfofimekdekbfiiioepnndnih |
Mô tả | A download extension for wechat article page |
Kích Thước Tệp | 73.7 KB |
Số Lần Cài Đặt | 75 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2019-06-01 |
Ngày Phát Hành | 2019-05-31 |
Nhà Phát Triển | faremax.yc |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/faremax1992/chrome-plugin/issues |
Ngôn Ngữ Được Hỗ Trợ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FareDownload", "version": "1.2.1", "manifest_version": 2, "description": "A download extension for wechat article page", "icons": { "128": "icon.png" }, "background": { "script": [ "bg.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "", "default_icon": "icon.png", "default_popup": "index.html" }, "offline_enabled": false, "content_scripts": [ { "matches": [ "https:\/\/mp.weixin.qq.com\/*" ], "css": [ "content.css" ], "js": [ "download.js", "content.js" ], "run_at": "document_end" } ] } |