FareDownload
A download extension for wechat article page
FareDownload란 무엇입니까?
FareDownload은(는) faremax.yc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A download extension for wechat article page"입니다.
확장 프로그램 스크린샷
FareDownload 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
qq文章页的视频、音频、图片下载。 由于其视频、音频地址是动态读取的,请在下载前先点击播放,并等待广告结束(如果有)。 更多功能及平台支持将陆续更新。
확장 프로그램 기본 정보
이름 | FareDownload |
ID | acalbnhbfofimekdekbfiiioepnndnih |
공식 URL | https://chromewebstore.google.com/detail/faredownload/acalbnhbfofimekdekbfiiioepnndnih |
설명 | A download extension for wechat article page |
파일 크기 | 73.7 KB |
설치 횟수 | 75 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2019-06-01 |
출시 날짜 | 2019-05-31 |
개발자 | faremax.yc |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/faremax1992/chrome-plugin/issues |
지원되는 언어 | 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" } ] } |