HideRT

Show and hide retweets from Twitter timeline.

HideRTとは何ですか?

HideRTはAlan Doursによって開発されたChromeの拡張機能で、その主な機能は「Show and hide retweets from Twitter timeline.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Hide retweets from Twitter timeline.                    

拡張機能の基本情報

名前 HideRT HideRT
ID gcekingpjldiahkdoddobmigpldmlojk
公式URL https://chromewebstore.google.com/detail/hidert/gcekingpjldiahkdoddobmigpldmlojk
説明 Show and hide retweets from Twitter timeline.
ファイルサイズ 16.7 KB
インストール数 94
現在のバージョン 1.1.1
最終更新日 2020-08-01
公開日 2019-05-17
評価 4.00/5 合計 5 レビュー
開発者 Alan Dours
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/alandours/hidert
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HideRT",
    "description": "Show and hide retweets from Twitter timeline.",
    "version": "1.1.1",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "Hide retweets"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "hidert.js"
            ],
            "css": [
                "hidert.css"
            ]
        }
    ]
}