Blockr

Blockr

A simple, lightweight post blocking solution for Tumblr

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Blockr",
  "description": "A simple, lightweight post blocking solution for Tumblr",
  "version": "1.1.1",
  "author": {
    "name": "Elizabeth Harper",
    "email": "[email protected]",
    "url": "https://github.com/EllieFops"
  },
  "incognito": "not_allowed",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.tumblr.com/dashboard"
      ],
      "css": [
        "css/blockr.css"
      ],
      "js": [
        "js/blockr.js"
      ]
    }
  ],
  "icons": {
    "16": "res/16.png",
    "32": "res/32.png",
    "48": "res/48.png",
    "128": "res/128.png"
  }
}