Quote Tweet Viewer

Quote Tweet Viewer

Adds a “see quote tweets” button to Twitter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quote Tweet Viewer",
  "description": "Adds a “see quote tweets” button to Twitter.",
  "version": "0.1.1",
  "manifest_version": 2,
  "web_accessible_resources": [
    "fonts/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "tweet.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png",
    "256": "icons/icon_256.png"
  }
}