RefinedTweets

RefinedTweets

Refine Twitter with your own algorithm

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RefinedTweets",
  "short_name": "RefinedTweet",
  "author": "[email protected]",
  "description": "Refine Twitter with your own algorithm",
  "version": "0.0.0.4",
  "version_name": "0.4 beta",
  "homepage_url": "https://refinedtweets.com/",
  "icons": {
    "16": "src/resources/icons/refined-tweets-16.png",
    "32": "src/resources/icons/refined-tweets-32.png",
    "48": "src/resources/icons/refined-tweets-48.png",
    "128": "src/resources/icons/refined-tweets-128.png",
    "256": "src/resources/icons/refined-tweets-256.png",
    "512": "src/resources/icons/refined-tweets-512.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.content.js.f70211c7.dd7f2feb.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "assets/content.js.9e6f480b.css"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://twitter.com/*",
    "https://refinedtweets.com/*"
  ],
  "options_ui": {
    "page": "src/optionPage/options.html",
    "open_in_tab": true
  },
  "action": {},
  "web_accessible_resources": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "resources": [
        "src/resources/fonts/*"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "resources": [
        "assets/reqInterceptor.997fd3c6.js",
        "assets/content.js.f70211c7.js"
      ],
      "use_dynamic_url": true
    }
  ]
}