TweetBlock

Block specific tweets from appearing on your timeline without blocking the user creating them.

TweetBlock là gì?

TweetBlock là một tiện ích mở rộng Chrome được phát triển bởi https://blackle-mori.com, và tính năng chính của nó là "Block specific tweets from appearing on your timeline without blocking the user creating them.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TweetBlock

Tải xuống các tệp mở rộng TweetBlock dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        TweetBlock is a chrome extension to block specific tweets from appearing on your timeline, without blocking the user creating them.

There are a few reasons why this little feature would be useful:

- There is a very popular tweet everyone in your feed is retweeting that you just don't want to see.
- There's an untagged tweet that makes you very uncomfortable.
- Your very good friend is in a odd meme mood and is posting pictures of lewd minions every 30 seconds and you're at work.

Once installed TweetBlock will add a small "X" button on each tweet which will allow you to block it. Blocked tweets appear in a collapsed state that can be expanded with the "toggle visibility" button. Tweets can be unblocked by re-clicking the "X" or visiting the options page, where a list of all blocked tweets can be viewed.

This extension is currently in very-beta release. If you find a bug please report it to the github repo (set as the webpage for this extension.)

Happy blocking!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TweetBlock TweetBlock
ID emgeioodbdkocgffmnfdhjldnefeikeb
URL Chính Thức https://chromewebstore.google.com/detail/tweetblock/emgeioodbdkocgffmnfdhjldnefeikeb
Mô tả Block specific tweets from appearing on your timeline without blocking the user creating them.
Kích Thước Tệp 769 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2016-06-10
Ngày Phát Hành 2016-06-09
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://blackle-mori.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/blackle/TweetBlock
URL Trang Trợ Giúp https://github.com/blackle/TweetBlock/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TweetBlock",
    "description": "Block specific tweets from appearing on your timeline without blocking the user creating them.",
    "version": "1.0.0",
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitter.com\/*",
                "*:\/\/twitter.com\/*"
            ],
            "css": [
                "sitecontent\/twitter.css"
            ],
            "js": [
                "commonjs\/blocked_tweet_db.js",
                "sitecontent\/twitter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/platform.twitter.com\/*"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/platform.twitter.com\/ https:\/\/syndication.twitter.com\/; object-src 'self'"
}