Social Muter

An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.

Social Muter là gì?

Social Muter là một tiện ích mở rộng Chrome được phát triển bởi https://socialmuter.com, và tính năng chính của nó là "An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.".

Ả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 Social Muter

Tải xuống các tệp mở rộng Social Muter 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

                        Tired of weekly spoilers showing up on your Twitter Timeline? Or perhaps, you're tired of seeing a certain hashtag or topic being discussed. With Social Muter, you can filter out all of that noise from your timeline and show only content that you really want to see, when you want to see it.                    

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

Tên Social Muter Social Muter
ID pipnnaljhbijgcfmcihmmjmpnmhhljhp
URL Chính Thức https://chromewebstore.google.com/detail/social-muter/pipnnaljhbijgcfmcihmmjmpnmhhljhp
Mô tả An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.
Kích Thước Tệp 107 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2016-12-18
Ngày Phát Hành 2016-12-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://socialmuter.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.0.1",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/twitter.com\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "Twitter Muter"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}