FareDownload

A download extension for wechat article page

Wat is FareDownload?

FareDownload is een Chrome-extensie ontwikkeld door faremax.yc, en de belangrijkste functie is "A download extension for wechat article page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie FareDownload

Download FareDownload-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

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

Basisinformatie over de Extensie

Naam FareDownload FareDownload
ID acalbnhbfofimekdekbfiiioepnndnih
Officiële URL https://chromewebstore.google.com/detail/faredownload/acalbnhbfofimekdekbfiiioepnndnih
Beschrijving A download extension for wechat article page
Bestandsgrootte 73.7 KB
Aantal Installaties 75
Huidige Versie 1.2.1
Laatst Bijgewerkt 2019-06-01
Publicatiedatum 2019-05-31
Ontwikkelaar faremax.yc
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/faremax1992/chrome-plugin/issues
Ondersteunde Talen 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"
        }
    ]
}