HireHarmonyAI is an AI powered Chrome extension that makes hiring over linkedin easier and more efficient.
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",
"description": "HireHarmonyAI is an AI powered Chrome extension that makes hiring over linkedin easier and more efficient.",
"version": "1.0.1.9",
"manifest_version": 3,
"name": "HireHarmonyAI",
"author": "Abdallah Altokhy",
"short_name": "HireHarmonyAI",
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "favicon-32x32.png"
},
"icons": {
"128": "favicon-32x32.png"
},
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/*"
],
"js": [
"UiWrapper.js"
],
"css": [
"content.styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"UiWrapper.html",
"content.styles.css",
"icon-128.png",
"icon-34.png",
"favicon-32x32.png",
"favicon.ico",
"popup.html"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"tabs",
"cookies",
"https://hireharmonyai.com/*",
"https://us-central1-hireharmonyai.cloudfunctions.net/*",
"storage"
],
"host_permissions": [
"https://hireharmonyai.com/*",
"https://us-central1-hireharmonyai.cloudfunctions.net/*"
]
}