Asocial 2

Asocial 2

Hide newsfeed of popular social networks on schedule. Supported sites: Facebook, Twitter, Vk.com, Ok.ru, Reddit, Youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Asocial 2",
  "default_locale": "en",
  "description": "Hide newsfeed of popular social networks on schedule. Supported sites: Facebook, Twitter, Vk.com, Ok.ru, Reddit, Youtube.",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": "./icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.vk.com/*"
      ],
      "js": [
        "content/vk.js"
      ],
      "css": [
        "content/vk.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "content/fb.js"
      ],
      "css": [
        "content/fb.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "content/tw.js"
      ],
      "css": [
        "content/tw.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.ok.ru/*"
      ],
      "js": [
        "content/ok.js"
      ],
      "css": [
        "content/ok.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content/yt.js"
      ],
      "css": [
        "content/yt.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "content/reddit.js"
      ],
      "css": [
        "content/reddit.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "48": "./icons/icon-48.png",
    "64": "./icons/icon-64.png",
    "128": "./icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "options_page": "options/options.html"
}