Skip to content

Commit

Permalink
Set minimum_chrome_version to 49 (ES6 support)
Browse files Browse the repository at this point in the history
  • Loading branch information
ComMouse committed Aug 15, 2016
1 parent 1b73fc3 commit c5fd3d2
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"update_url":"http://clients2.google.com/service/update2/crx",
"name": "Electsys++ 交大选课插件",
"author": "laohyx",
"version": "2.4",
"icons": {
"48": "logo_new.png",
"128": "logo_new_128.png"
},
"description": "上海交通大学选课网优化工具",
"update_url":"http://clients2.google.com/service/update2/crx",
"name": "Electsys++ 交大选课插件",
"author": "laohyx",
"version": "2.4",
"icons": {
"48": "logo_new.png",
"128": "logo_new_128.png"
},
"description": "上海交通大学选课网优化工具",
"homepage_url": "http://laohyx.com/",
"browser_action": {
"default_icon": {
"48": "logo_new.png",
"128": "logo_new_128.png"
},
"48": "logo_new.png",
"128": "logo_new_128.png"
},
"default_title": "Electsys++",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"content_scripts": [
{
"matches": ["*://*.sjtu.edu.cn/*"],
"js": ["content_script/jquery-1.6.1.min.js",
"content_script/lesson.js",
"content_script/nhce.js",
"content_script/nhce.js",
"content_script/optimize.js",
"content_script/score.js",
"content_script/login_page.js",
Expand All @@ -31,13 +31,14 @@
],
"run_at": "document_start",
"all_frames": true
}
],
}
],
"permissions": [
"*://*.sjtu.edu.cn/*",
"notifications",
"management"
"management"
],
"minimum_chrome_version": "49",
"manifest_version": 2,
"web_accessible_resources": [
"manifest.json"
Expand Down

0 comments on commit c5fd3d2

Please sign in to comment.