CHATTERBOX - Internet Commenting

CHATTERBOX - Internet Commenting

The Comment Section of the Internet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CHATTERBOX - Internet Commenting",
  "description": "The Comment Section of the Internet",
  "manifest_version": 2,
  "version": "3.1",
  "short_name": "CHATTERBOX",
  "browser_action": {
    "default_icon": "img/logo_blank.png",
    "default_popup": "index.html"
  },
  "icons": {
    "128": "img/logo_blank.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "https://www.googleapis.com/*",
    "https://chatterboxapi.netlify.app/*"
  ],
  "background": {
    "scripts": [
      "js/jquery.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "js/icons.js",
        "js/jquery.js",
        "content.js"
      ],
      "run_at": "document_end",
      "css": [
        "css/animate.min.css",
        "css/content.css"
      ],
      "all_frames": true
    }
  ]
}