Read Only Twitter

Enhance your Twitter experience by preventing yourself from actually interacting.

Read Only Twitter là gì?

Read Only Twitter là một tiện ích mở rộng Chrome được phát triển bởi TheCleric, và tính năng chính của nó là "Enhance your Twitter experience by preventing yourself from actually interacting.".

Ả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 Read Only Twitter

Tải xuống các tệp mở rộng Read Only Twitter 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

                        By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run.

Allow your Twitter stream to flow past you, and then let it go.

Options to disable tweets, retweets, likes, and direct messages.                    

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

Tên Read Only Twitter Read Only Twitter
ID cemhfjoonebpbnddchcopobdgdngnhdl
URL Chính Thức https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl
Mô tả Enhance your Twitter experience by preventing yourself from actually interacting.
Kích Thước Tệp 164 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-08-24
Ngày Phát Hành 2020-08-21
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển TheCleric
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TheCleric/ReadOnlyTwitter
URL Trang Trợ Giúp https://github.com/TheCleric/ReadOnlyTwitter
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Only Twitter",
    "version": "1.0.1",
    "description": "Enhance your Twitter experience by preventing yourself from actually interacting.",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "readOnlyTwitterOptions.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "readOnlyTwitterOptions.html",
        "default_icon": {
            "128": "icons\/ReadOnlyTwitter128.png",
            "512": "icons\/ReadOnlyTwitter.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "readOnlyTwitter.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'",
    "icons": {
        "128": "icons\/ReadOnlyTwitter128.png",
        "512": "icons\/ReadOnlyTwitter.png"
    }
}