Download selected files
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_appName__",
"version": "0.0.1.1",
"manifest_version": 2,
"default_locale": "en",
"description": "Download selected files",
"background": {
"scripts": [
"/lib/deflate.js",
"/lib/zip.js",
"/lib/inflate.js",
"/lib/z-worker.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http://learn.tsinghua.edu.cn/MultiLanguage/lesson/student/*"
],
"js": [
"content_script.js"
]
}
],
"browser_action": {
"default_icon": "icon38.png"
},
"permissions": [
"downloads",
"activeTab",
"http://learn.tsinghua.edu.cn/MultiLanguage/*"
],
"icons": {
"128": "icon.png"
},
"web_accessible_resources": [
"mycss.css"
]
}