Skip to content
Snippets Groups Projects
Select Git revision
  • 2ceca69e23d5e246330fff95df105f4e37bd0dbf
  • master default protected
2 results

manifest.json

Blame
  • manifest.json 466 B
    {
      "manifest_version": 3,
      "name": "AssetTrq Encryption",
      "version": "1.0",
      "permissions": ["storage", "activeTab", "scripting"],
    
      "action": {
        "default_popup": "popup.html",
        "default_icon": {
          "16": "icons/icon16.png"
        }
      },
    
      "content_scripts": [
        {
          "matches": [
            "https://*.assettraq.com/*",
            "http://localhost:3000/*",
            "https://identity-stg.assettraq.com/*"
          ],
          "js": ["content.js"]
        }
      ]
    }