Inspect and view changes in Hirist+ Company Research Tool 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
{
"manifest_version": 3,
"name": "Hirist+ Company Research Tool",
"version": "1.0.1",
"description": "Add LinkedIn and Glassdoor company research buttons to Hirist job listings for quick company information access.",
"permissions": [
"activeTab",
"scripting"
],
"host_permissions": [
"https://www.hirist.tech/*",
"https://www.linkedin.com/*",
"https://www.glassdoor.com/*"
],
"action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https://www.hirist.tech/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"author": "Mukesh Kumar",
"homepage_url": "https://github.com/moo-kesh/hirist_plus_ext",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}