Shit List

Shit List

A shit list for the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shit List",
  "description": "A shit list for the web.",
  "version": "0.0.9",
  "icons": {
    "16": "images/cursor16.png",
    "19": "images/cursor19.png",
    "32": "images/cursor32.png",
    "38": "images/cursor38.png",
    "48": "images/cursor48.png",
    "64": "images/cursor64.png",
    "128": "images/cursor128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon-inactive16.png",
      "19": "images/icon-inactive19.png",
      "32": "images/icon-inactive32.png",
      "38": "images/icon-inactive38.png",
      "48": "images/icon-inactive48.png",
      "64": "images/icon-inactive64.png",
      "128": "images/icon-inactive128.png"
    },
    "default_title": "Add this site to your shit list."
  },
  "background": {
    "scripts": [
      "js/backgroundBundle.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/shitList.css"
      ],
      "js": [
        "js/libs/jquery-1.11.1.min.js",
        "js/contentScriptBundle.min.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/",
    "storage"
  ],
  "web_accessible_resources": [
    "images/cursor64.png"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}