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
官方網址 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"
    }
}