The Owl Twitter

The Owl Twitter

Customize your twitter with The Owl House theme

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Customize your twitter with The Owl House theme",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "manifest_version": 3,
  "name": "The Owl Twitter",
  "version": "1.0",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "images/*.png"
      ]
    }
  ]
}