Inspect and view changes in 中南大图书荐购助手 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "中南大图书荐购助手",
"description": "中南财经政法大学小书虫必备插件,根据ISBN一键填写读者荐购信息,同时辅助查询豆瓣书籍评论",
"version": "1.2.0",
"manifest_version": 2,
"icons": {
"128": "icons/zuel.png"
},
"browser_action": {
"default_title": "中南大图书馆一键荐购",
"default_icon": "icons/zuel.png",
"default_popup": "www/index.html"
},
"background": {
"scripts": [
"www/js/bex-background.js",
"js/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"www/js/bex-content-script.js",
"js/content-script.js"
],
"css": [
"css/content-css.css"
]
}
],
"permissions": [
"activeTab"
],
"web_accessible_resources": [
"www/*",
"js/*",
"css/*",
"<all_urls>"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}