Examine source code of deviantArt Blocker

Inspect and view changes in deviantArt Blocker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "deviantArt Blocker",
  "description": "Block selected artists on DeviantArt's Eclipse browser page. Hide images from artists that are of poor quality, offensive, or of no interest. Simply click the X button bottom right of any image. Also optinally block Subscription Adverts. ",
  "version": "2.2",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "deviantArtBlocker.js"
      ],
      "matches": [
        "http://www.deviantart.com/*",
        "https://www.deviantart.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "deviantArtFilter@brandrock.co.za"
    }
  },
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  }
}