Twitter Cleaner

Removes annoying twitter boxes

什么是Twitter Cleaner?

Twitter Cleaner是由https://cavar.net开发的Chrome扩展程序,该扩展的主要功能是“Removes annoying twitter boxes”。

扩展截图

screenshot

下载Twitter Cleaner扩展crx文件

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

扩展使用说明

                        Removes trending, who to follow and footer boxes.
Report any issues here https://github.com/Palethorn/twitter_cleaner/issues                    

扩展基本信息

名称 Twitter Cleaner Twitter Cleaner
ID oocpmdgjlccdinophpbbkmfdjooflfac
官方URL https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac
简介 Removes annoying twitter boxes
文件大小 92.48 KB
安装次数 50
当前版本 2.0.0
更新时间 2019-11-21
上架时间 2019-11-21
评分 5.00/5 共1次评分
开发者 https://cavar.net
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Palethorn/twitter_cleaner
帮助页面URL https://github.com/Palethorn/twitter_cleaner/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Cleaner",
    "version": "2.0.0",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "description": "Removes annoying twitter boxes",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}