Examine source code of CommentBlock: Avoid Comments and Distractions

Inspect and view changes in CommentBlock: Avoid Comments and Distractions 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": "CommentBlock: Avoid Comments and Distractions",
  "short_name": "CommentBlock",
  "description": "Block comments everywhere including sites like Facebook and Youtube",
  "version": "0.0.3",
  "icons": {
    "48": "images/cb-logos/48_CB_logo.png",
    "128": "images/cb-logos/128_CB_logo.png"
  },
  "browser_action": {
    "default_icon": "images/cb-logos/128_CB_logo.png",
    "default_popup": "popover.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "facebookContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "instagramContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "linkedinContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.twitter.com/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "twitterContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "youtubeContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.9gag.com/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "nineGagContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.imgur.com/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "imgurContentScript.js"
      ]
    },
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "commentPluginsContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "commentPluginsContentScript.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}