Sax

Sax

Stop wasting your time on crap sites!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sax",
  "description": "Stop wasting your time on crap sites!",
  "version": "0.12",
  "browser_action": {
    "default_icon": "media/icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    "media/sax-guy.gif",
    "media/sax-guy.ogg"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "saxxer.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}