Twitter Stress Reduction

Twitter Stress Reduction

Twitter Stress Reduction là gì?

Twitter Stress Reduction là một tiện ích mở rộng Chrome được phát triển bởi https://shirouzu.jp, và tính năng chính của nó là "Twitter Stress Reduction".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitter Stress Reduction

Tải xuống các tệp mở rộng Twitter Stress Reduction dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitter Stress Reduction Twitter Stress Reduction
ID ipnjgahnocpaefhffbnnjonihlihoeic
URL Chính Thức https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic
Mô tả Twitter Stress Reduction
Kích Thước Tệp 49.66 KB
Số Lần Cài Đặt 14,213
Phiên Bản Hiện Tại 0.3.5.1
Cập Nhật Lần Cuối 2024-01-09
Ngày Phát Hành 2020-06-02
Đánh Giá 4.89/5 Tổng số 38 Đánh Giá
Nhà Phát Triển https://shirouzu.jp
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://shirouzu.jp/tech/twitter-stress-reduction
URL Trang Trợ Giúp https://groups.google.com/g/twitter-stress-reduction
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}