Niftycase

Niftycase

The Web 3.0 social layer built on top of Twitter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "The Web 3.0 social layer built on top of Twitter.",
  "version": "1.3.1",
  "name": "Niftycase",
  "manifest_version": 3,
  "icons": {
    "16": "assets/img/get_started16.png",
    "32": "assets/img/get_started32.png",
    "48": "assets/img/get_started48.png",
    "128": "assets/img/get_started128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*"
      ],
      "css": [
        "assets/css/global.css",
        "assets/css/global.dark.css",
        "assets/css/global.darker.css",
        "assets/css/global.light.css"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "*://*.twitter.com/*",
        "*://twitter.com/*"
      ]
    }
  ]
}