Examine source code of Block-chrome-extension

Inspect and view changes in Block-chrome-extension 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Block-chrome-extension",
  "manifest_version": 2,
  "version": "1.1",
  "description": "A chrome extension for blocking anything you dislike when visiting websites",
  "browser_action": {
    "default_icon": "favicons.png"
  },
  "icons": {
    "16": "favicons.png",
    "48": "favicons.png",
    "128": "favicons.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://blog.fishc.com/*"
      ],
      "js": [
        "myscript.js"
      ]
    }
  ]
}