Social Muter

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

Social Muterとは何ですか?

Social Muterはhttps://socialmuter.comによって開発されたChromeの拡張機能で、その主な機能は「An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.」です。

拡張機能のスクリーンショット

screenshot

Social Muter拡張機能のCRXファイルをダウンロード

Social Muter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Social Muter Social Muter
ID pipnnaljhbijgcfmcihmmjmpnmhhljhp
公式URL https://chromewebstore.google.com/detail/social-muter/pipnnaljhbijgcfmcihmmjmpnmhhljhp
説明 An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.
ファイルサイズ 107 KB
インストール数 24
現在のバージョン 0.0.1
最終更新日 2016-12-18
公開日 2016-12-17
評価 5.00/5 合計 2 レビュー
開発者 https://socialmuter.com
支払い方法 free
対応言語 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
        }
    ]
}