Nativ Tools

Nativ Tools

Nativ Tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nativ Tools",
  "version": "2.0",
  "description": "Nativ Tools",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/insert.js"
      ],
      "exclude_matches": [
        "https://jerusalem.consulfrance.org/"
      ]
    }
  ],
  "icons": {
    "128": "images/nativ-logo.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' 'sha256-DWEgB5uc3BTYTzker85aUkaFPBHuCoDBf6K4S7VCV/M='",
  "web_accessible_resources": [
    "page.html",
    "toggle.html"
  ],
  "manifest_version": 2,
  "default_locale": "he",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "file://*/*",
    "https://*/*",
    "http://*/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}