Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "HireIQ",
"short_name": "HireIQ",
"version": "1.0.4",
"description": "Smart job intelligence that helps freelancers quickly spot high-quality opportunities and avoid scams.",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.upwork.com\/*",
"https:\/\/www.fiverr.com\/*",
"https:\/\/extensionpay.com\/*"
],
"background": {
"service_worker": "dist\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.upwork.com\/*",
"https:\/\/www.fiverr.com\/*"
],
"js": [
"dist\/content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"dist\/extpay-content.js"
],
"run_at": "document_start"
}
],
"options_page": "options.html",
"action": {
"default_title": "HireIQ",
"default_popup": "popup.html"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}