Read Only Twitter

Enhance your Twitter experience by preventing yourself from actually interacting.

什么是Read Only Twitter?

Read Only Twitter是由TheCleric开发的Chrome扩展程序,该扩展的主要功能是“Enhance your Twitter experience by preventing yourself from actually interacting.”。

扩展截图

screenshot
screenshot

下载Read Only Twitter扩展crx文件

下载Read Only Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Read Only Twitter Read Only Twitter
ID cemhfjoonebpbnddchcopobdgdngnhdl
官方URL https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl
简介 Enhance your Twitter experience by preventing yourself from actually interacting.
文件大小 164 KB
安装次数 56
当前版本 1.0.1
更新时间 2020-08-24
上架时间 2020-08-21
评分 5.00/5 共3次评分
开发者 TheCleric
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/TheCleric/ReadOnlyTwitter
帮助页面URL https://github.com/TheCleric/ReadOnlyTwitter
支持的语言 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"
    }
}