Twitter Stress Reduction

Twitter Stress Reduction

A mini tool to use Twitter comfortably. - Hide 'ForYou/Trending/What's happened/etc' entries. - Fold/Unfold button for tweet image.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_desc__",
  "manifest_version": 2,
  "version": "0.3.5.9",
  "description": "__MSG_desc__",
  "default_locale": "ja",
  "content_scripts": [
    {
      "matches": [
        "https://x.com/*",
        "https://mobile.x.com/*",
        "https://twitter.com/*",
        "https://mobile.twitter.com/*"
      ],
      "js": [
        "tw_fold.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "tw16.png",
    "default_title": "Twitter Stress Reduction"
  },
  "background": {
    "scripts": [
      "tw_background.js"
    ]
  },
  "options_ui": {
    "page": "tw_fold.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "tw_fold.html"
  ],
  "icons": {
    "16": "tw16.png",
    "48": "tw48.png",
    "128": "tw128.png"
  },
  "permissions": [
    "https://x.com/*",
    "https://mobile.x.com/*",
    "https://twitter.com/*",
    "https://mobile.twitter.com/*",
    "contextMenus",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{6520b620-37b6-4139-b0ed-afad52ed2e1d}"
    }
  }
}