JMCleaner

JMCleaner

Dodatek do ukrywania niechcianych komentarzy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JMCleaner",
  "description": "Dodatek do ukrywania niechcianych komentarzy.",
  "version": "1.7",
  "browser_action": {
    "default_icon": "img/favicon.ico_32x32.png",
    "default_popup": "popup.html",
    "default_title": "Kliknij"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/jquery-3.1.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://joemonster.org/*",
        "http://www.joemonster.org/*",
        "https://joemonster.org/*",
        "https://www.joemonster.org/*"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/jm.js"
      ]
    }
  ],
  "options_page": "options.html"
}