Squint Blur Tool

Squint Blur Tool

This extension allows you to blur page elements for the purpose of screen captures or recordings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Squint Blur Tool",
  "description": "This extension allows you to blur page elements for the purpose of screen captures or recordings.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "squint-36x36.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "squint.js"
      ],
      "css": [
        "squint.css"
      ]
    }
  ]
}