ySense Addon

ySense Addon

Keep track of your account status and receive alerts of new earning opportunities.

Merlin
Additional files are visible only to premium users

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"
}