PostsDash

PostsDash

Show tweets in a tiled layout and watch them automatically update!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "PostsDash",
  "version": "1.0.4",
  "description": "Show tweets in a tiled layout and watch them automatically update!",
  "manifest_version": 3,
  "incognito": "split",
  "icons": {
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.twitter.com/*",
        "https://*.twitter.com/*"
      ],
      "css": [
        "styles/styles.css"
      ],
      "js": [
        "all.min.js"
      ]
    }
  ],
  "host_permissions": [
    "http://*.twitter.com/*",
    "https://*.twitter.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/x.svg",
        "styles/style.css",
        "images/repeat.svg",
        "images/logo.svg",
        "images/icon.ico",
        "images/arrow-left.svg",
        "images/arrow-right.svg",
        "fonts/logofont.ttf"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}