Twitter Stress Reduction

Twitter Stress Reduction

What is Twitter Stress Reduction?

Twitter Stress Reduction is a Chrome extension developed by https://shirouzu.jp, and its main feature is "Twitter Stress Reduction".

Extension Screenshots

screenshot
screenshot

Download Twitter Stress Reduction Extension CRX File

Download Twitter Stress Reduction extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Twitter Stress Reduction Twitter Stress Reduction
ID ipnjgahnocpaefhffbnnjonihlihoeic
Official URL https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic
Description Twitter Stress Reduction
File Size 49.66 KB
Installation Count 14,213
Current Version 0.3.5.1
Last Updated 2024-01-09
Publish Date 2020-06-02
Rating 4.89/5 Total 38 Ratings
Developer https://shirouzu.jp
Email [email protected]
Payment Type free
Extension Website https://shirouzu.jp/tech/twitter-stress-reduction
Help Page URL https://groups.google.com/g/twitter-stress-reduction
Supported Languages en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_desc__",
    "manifest_version": 2,
    "version": "0.3.5.1",
    "description": "__MSG_desc__",
    "default_locale": "ja",
    "content_scripts": [
        {
            "matches": [
                "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:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*",
        "contextMenus",
        "storage"
    ]
}