Deaf Friendly

Deaf Friendly

Rozšíření pro zobrazování překladů v Českém znakovém jazyce.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Deaf Friendly",
  "version": "1.0.2",
  "description": "Rozšíření pro zobrazování překladů v Českém znakovém jazyce.",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_title": "Deaf Friendly",
    "default_popup": "popup.html"
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "http://api.deaffriendly.cz/*"
  ],
  "manifest_version": 2,
  "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src http://api.deaffriendly.cz; img-src http://api.deaffriendly.cz"
}