tweetflick

tweetflick

The smart way to save, organise, and access the tweets and threads you find useful.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "tweetflick",
  "description": "The smart way to save, organise, and access the tweets and threads you find useful.",
  "version": "2.4",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "tweetflick",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "tags.css"
      ]
    }
  ],
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "https://tweetflick.com/*",
    "https://app.tweetflick.com/*",
    "http://localhost:3000/*",
    "https://twitter.com/*",
    "https://mobile.twitter.com/*",
    "https://tweetflick-front.axeldemos.com/*",
    "https://tweetflick-landing.axeldemos.com/*"
  ]
}