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": "Flick - Auto Switch To Freelancer Platforms On New Job Alerts",
"version": "1.0.9",
"icons": {
"48": "icons\/icon-on.png"
},
"web_accessible_resources": [
{
"resources": [
"libs\/fingerprint.min.js",
"offscreen.html",
"offscreen.js",
"popup\/sounds\/beep.mp3"
],
"matches": [
"<all_urls>"
]
}
],
"oauth2": {
"client_id": "429885672148-29oa0oh99vgqpsa374c8hb0gdsa5m9of.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/userinfo.profile"
]
},
"description": "Automatically Switch Tabs To Freelancer Active Platforms On New Job Notifications",
"permissions": [
"tabs",
"activeTab",
"storage",
"alarms",
"scripting",
"offscreen",
"identity",
"contextMenus"
],
"host_permissions": [
"https:\/\/*.upwork.com\/*",
"https:\/\/*.freelancer.com\/*",
"https:\/\/*.fiverr.com\/*",
"https:\/\/*.peopleperhour.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.freelancer.com\/*"
],
"js": [
"content\/freelancer.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/www.fiverr.com\/*"
],
"js": [
"content\/fiverr.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/www.upwork.com\/*"
],
"js": [
"content\/upwork.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/www.peopleperhour.com\/*"
],
"js": [
"content\/peopleperhour.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon-on.png",
"48": "icons\/icon-on.png",
"128": "icons\/icon-on.png"
}
}
}