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": "现在招聘网站往往不展示职位的原始发布日期,导致求职者无效投递。这个工具将提取出职位最原始的发布日期,帮助你快速求职。",
"version": "2.2.1",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https://*.zhipin.com/*",
"https://*.liepin.com/*",
"https://*.zhaopin.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_title": "职位发布日期解析器",
"default_icon": "icon.png"
},
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
}
}