Subscrybe

Subscrybe

Manage subscriptions, and get alerted before next billing date.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Subscrybe",
  "version": "1.0.8",
  "description": "Manage subscriptions, and get alerted before next billing date.",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "https://my.subscrybe.app/*",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "bundle.js",
        "alter.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Subscrybe",
    "default_popup": "index.html"
  }
}