Cut the crap - undistracted browsing

Cut the crap - undistracted browsing

Read the web through a distraction free lens. Name credit - Pooja

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cut the crap - undistracted browsing",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "Read the web through a distraction free lens. Name credit - Pooja",
  "homepage_url": "https://github.com/hsingh23/lens",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "pico-modal.js",
        "undistracted.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "*"
  ]
}