Twitter Blocker

Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.

什么是Twitter Blocker?

Twitter Blocker是由https://obodugo.com开发的Chrome扩展程序,该扩展的主要功能是“Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.”。

扩展截图

screenshot
screenshot
screenshot

下载Twitter Blocker扩展crx文件

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

扩展使用说明

                        Twitter Blocker helps you reduce the noise on your timeline. 
Ever encountered muting a tweet, hashtag or whatsoever on twitter,  but still see them popping up on the TL one way or the other? Well, this removes it entirely from the page so you don't get to see it again.

So What can i block using Twitter Blocker 🤔

- Tweets
- Tweets by Category
- Hashtags
- Tweets by Location

Hopefully this helps you maintain a good level of sanity on your TL :)
Experience any issue whilst using the extension, quickly buzz us using the support links on the page, and we would get on it ASAP.                    

扩展基本信息

名称 Twitter Blocker Twitter Blocker
ID hifjjlinjpddohocbhfifpaopdfnfadl
官方URL https://chrome.google.com/webstore/detail/twitter-blocker/hifjjlinjpddohocbhfifpaopdfnfadl
简介 Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.
文件大小 639 KB
安装次数 79
当前版本 1.0
更新时间 2020-06-21
上架时间 2020-06-21
开发者 https://obodugo.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://obodugo.com
帮助页面URL https://twitter.com/djunehor
隐私政策页面URL https://shagital.com
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter  Blocker",
    "description": "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.",
    "version": "1.0",
    "short_name": "RecordRTC",
    "author": "Obodugo Rapheal, Zacchaeus Bolaji",
    "manifest_version": 2,
    "minimum_chrome_version": "49",
    "homepage_url": "https:\/\/obodugo.com",
    "icons": {
        "16": "icon.png",
        "22": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "script.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Twitter Blocker",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}