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
电子邮箱 [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"
    ]
}