Stop Autopilot

Stop Autopilot

Stop your inner autopilot and browse more consciously

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stop Autopilot",
  "version": "0.0.0.5",
  "description": "Stop your inner autopilot and browse more consciously",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png",
    "512": "img/icon512.png"
  },
  "background": {
    "scripts": [
      "libs/lodash.core.min.js",
      "utils.js",
      "blocker.js",
      "notifier.js",
      "timer.js",
      "tracker.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Stop Autopilot"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "options_page": "options.html",
  "permissions": [
    "alarms",
    "idle",
    "tabs",
    "activeTab",
    "storage",
    "notifications"
  ]
}