IT'S TIME TO STOP!

IT'S TIME TO STOP!

Is it time to stop? Tap the button to find out.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IT'S TIME TO STOP!",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "Is it time to stop? Tap the button to find out.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "TIME TO STOP"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "css": [
        "timetostop.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/*"
  ]
}