Inspect and view changes in Tailored Job - A job hunting companion 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": "Tailored Job - A job hunting companion",
"version": "1.0.2",
"description": "A powerful resume tailoring and job matching tool",
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs",
"notifications",
"alarms"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"action": {
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
}
},
"background": {
"service_worker": "src/background/index.js",
"type": "module"
},
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/content/index.js"
],
"run_at": "document_idle",
"type": "module"
}
],
"web_accessible_resources": [
{
"resources": [
"assets/*",
"src/lib/*",
"node_modules/pdfjs-dist/build/pdf.worker.min.js"
],
"matches": [
"<all_urls>"
]
}
]
}