FYM - Free Your Mind

FYM - Free Your Mind

Save the start date of a service, the release date of a web series, auctions and many things from YOUR Web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FYM - Free Your Mind",
  "version": "0.2",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "alarms",
    "notifications",
    "background"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "fym.html"
  },
  "content_scripts": [
    {
      "js": [
        "fym.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  }
}