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",
"manifest_version": 3,
"name": "狗哥求职",
"version": "0.4.1",
"description": "够准够快,轻松求职!狗哥求职现已支持5000+公司,帮你告别繁琐的简历填写,让求职更高效、更简单!",
"permissions": [
"storage",
"sidePanel",
"tabs"
],
"default_locale": "zh_CN",
"host_permissions": [
"*://*.gougeqiuzhi.com/"
],
"side_panel": {
"default_path": "src/prodPages/sidepanel/index.html"
},
"background": {
"service_worker": "src/prodPages/background/index.js",
"type": "module"
},
"action": {
"default_icon": "icon-34.png"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"src/prodPages/contentUI/index.js"
],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"https://gougeqiuzhi.com/*",
"*://localhost/*"
]
},
"web_accessible_resources": [
{
"resources": [
"assets/js/*.js",
"assets/css/*.css",
"icon-128.png",
"icon-34.png"
],
"matches": [
"*://*/*"
]
}
]
}