FareDownload

A download extension for wechat article page

What is FareDownload?

FareDownload is a Chrome extension developed by faremax.yc, and its main feature is "A download extension for wechat article page".

Extension Screenshots

screenshot

Download FareDownload Extension CRX File

Download FareDownload 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

                        qq文章页的视频、音频、图片下载。

由于其视频、音频地址是动态读取的,请在下载前先点击播放,并等待广告结束(如果有)。

更多功能及平台支持将陆续更新。                    

Extension Basic Information

Name FareDownload FareDownload
ID acalbnhbfofimekdekbfiiioepnndnih
Official URL https://chromewebstore.google.com/detail/faredownload/acalbnhbfofimekdekbfiiioepnndnih
Description A download extension for wechat article page
File Size 73.7 KB
Installation Count 75
Current Version 1.2.1
Last Updated 2019-06-01
Publish Date 2019-05-31
Developer faremax.yc
Email [email protected]
Payment Type free
Help Page URL https://github.com/faremax1992/chrome-plugin/issues
Supported Languages 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"
        }
    ]
}