Unweb

Unweb

Unweb hides distractions like feeds, related articles and suggested videos to help you focus.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.4",
  "name": "Unweb",
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "description": "Unweb hides distractions like feeds, related articles and suggested videos to help you focus.",
  "icons": {
    "16": "img/unweb_logo16.png",
    "48": "img/unweb_logo48.png",
    "128": "img/unweb_logo128.png"
  },
  "browser_action": {
    "default_popup": "html/pages/popup.html"
  },
  "options_ui": {
    "page": "html/pages/options_home.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://apis.google.com; object-src 'self'",
  "web_accessible_resources": [
    "img/*",
    "fonts/*",
    "html/*",
    "css/*"
  ],
  "background": {
    "scripts": [
      "config.js",
      "js/vars/defaults.js",
      "js/vars/amplitude-credentials.js",
      "js/vendor/amplitude-instance.js",
      "js/vendor/moment.min.js",
      "js/background/utils/lib.js",
      "js/background/init.js",
      "js/background/settings.js",
      "js/background/listeners.js",
      "js/background/logger.js",
      "js/background/messager.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "config.js",
        "js/vars/hidees.js",
        "js/content/storage/html.js",
        "js/content/utils/cache.js",
        "js/content/utils/lib.js",
        "js/content/hider.js",
        "js/content/controller.js"
      ],
      "css": [],
      "run_at": "document_start"
    }
  ]
}