Tahir

Tahir

Avoid haram images & videos on the Internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tahir",
  "description": "Avoid haram images & videos on the Internet.",
  "version": "1.0.5",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_title": "Tahir",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "assets/img/icon128.png"
  },
  "commands": {
    "reverse_status": {
      "suggested_key": {
        "default": "Alt+L"
      },
      "description": "Reverse blur state"
    },
    "toggle_selected": {
      "suggested_key": {
        "default": "Alt+K"
      },
      "description": "Unblur/reblur selected image"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "tab.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}