Sites Cleaner

Sites Cleaner

Hiding unsolicited information on on websites as part of the "For Safe Internet for Children" program

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "short_name": "__MSG_app_shortname__",
  "description": "__MSG_app_description__",
  "default_locale": "ru",
  "author": "Dmitry Soloviev",
  "homepage_url": "https://ilovejavaforever.wordpress.com/portfolio/portfolio-chrome-extensions/sites-cleaner/",
  "version": "1.2.1",
  "icons": {
    "16": "images/SiteCleaner(16).png",
    "48": "images/SiteCleaner(48).png",
    "128": "images/SiteCleaner(128).png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": {
      "38": "images/SiteCleaner(38)r.png"
    },
    "default_title": "__MSG_toolbar_button__"
  },
  "background": {
    "scripts": [
      "./scripts/background.js",
      "./scripts/config.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.liveexpert.ru/*",
        "*://*.onlinemultfilmy.ru/*",
        "*://*.twitter.com/*",
        "*://*.vk.com/*",
        "*://*.youtube.com/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/youtube.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "scripts/jquery-3.2.1.min.js",
    "scripts/stopautoplay.js"
  ],
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "__MSG_keyboardShortcutToggle__"
    }
  },
  "manifest_version": 2
}