Keep track of your account status and receive alerts of new earning opportunities.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"author": "Joao Marques",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"20": "img/ysense_icon_20.png",
"40": "img/ysense_icon_40.png"
},
"default_title": "ySense Addon",
"default_popup": "popup.html"
},
"description": "Keep track of your account status and receive alerts of new earning opportunities.",
"content_scripts": [
{
"matches": [
"*://*.clixsense.com/*",
"*://*.ysense.com/*"
],
"js": [
"js/listen.js"
]
}
],
"homepage_url": "https://www.ysense.com/addon",
"icons": {
"20": "img/ysense_icon_20.png",
"25": "img/ysense_icon_25.png",
"30": "img/ysense_icon_30.png",
"40": "img/ysense_icon_40.png",
"50": "img/ysense_icon_50.png",
"128": "img/ysense_icon_128.png",
"150": "img/ysense_icon_150.png"
},
"manifest_version": 2,
"name": "ySense Addon",
"short_name": "ySenseAddon",
"permissions": [
"storage",
"tabs",
"activeTab",
"notifications",
"*://*/"
],
"version": "2.7.0.0",
"web_accessible_resources": [
"img/ysense_icon_48.png"
],
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}