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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "美团考勤",
"version": "2.9.0",
"description": "美团考勤,用于便捷查看自己的平均工作节奏。来自:外卖技术部。",
"permissions": [
"declarativeContent",
"storage"
],
"homepage_url": "https://hr.sankuai.com/attendance-record",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon.png"
},
"content_scripts": [
{
"matches": [
"https://hr.sankuai.com/",
"https://hr.sankuai.com/attendance-record",
"https://hr.sankuai.com/attendance-record/",
"https://hr.it.test.sankuai.com/attendance-record",
"https://hr.it.test.sankuai.com/attendance-record/",
"https://hr.sankuai.com/attendance-summary*",
"https://hr.sankuai.com/waibao/attendance-summary/detail*"
],
"js": [
"util.js",
"jquery.js",
"jquery-tooltip.js",
"content-script.js"
],
"css": [
"styles/tooltip.css",
"styles/style.css",
"styles/rock.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"images/*"
],
"manifest_version": 2
}