remove-twitter-trends

Switches Twitter trending topics off

remove-twitter-trendsとは何ですか?

remove-twitter-trendsはAndre Alves Garziaによって開発されたChromeの拡張機能で、その主な機能は「Switches Twitter trending topics off」です。

拡張機能のスクリーンショット

screenshot

remove-twitter-trends拡張機能のCRXファイルをダウンロード

remove-twitter-trends拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.                    

拡張機能の基本情報

名前 remove-twitter-trends remove-twitter-trends
ID pdbaomfhmpcbdabjpjfpoehhjnphdoac
公式URL https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac
説明 Switches Twitter trending topics off
ファイルサイズ 1.45 MB
インストール数 918
現在のバージョン 1.0.1
最終更新日 2021-12-31
公開日 2021-12-31
評価 3.43/5 合計 7 レビュー
開発者 Andre Alves Garzia
Eメール [email protected]
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "remove-twitter-trends",
    "description": "Switches Twitter trending topics off",
    "version": "1.0.1",
    "icons": {
        "64": "icons\/icon512.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "browser-polyfill.js",
                "mithril.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ]
}