Cleaner Twitter

Make Twitter UI cleaner by removing annoying pieces.

Cleaner Twitterとは何ですか?

Cleaner TwitterはKenny_1291によって開発されたChromeの拡張機能で、その主な機能は「Make Twitter UI cleaner by removing annoying pieces.」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        With this extension you can hide annoying Twitter UI pieces.

*FEATURES*
- Predefined rules
- Modify and add custom CSS rules
- Predefined rules updates (no extension update required)


Source code: https://github.com/Kenny1291/cleaner-twitter                    

拡張機能の基本情報

名前 Cleaner Twitter Cleaner Twitter
ID iplodopmopkmkpblangcjomcdfiidneo
公式URL https://chromewebstore.google.com/detail/cleaner-twitter/iplodopmopkmkpblangcjomcdfiidneo
説明 Make Twitter UI cleaner by removing annoying pieces.
ファイルサイズ 197 KB
インストール数 27
現在のバージョン 0.3.2
最終更新日 2024-02-05
公開日 2023-05-01
開発者 Kenny_1291
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Kenny1291/cleaner-twitter
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cleaner Twitter",
    "description": "Make Twitter UI cleaner by removing annoying pieces.",
    "version": "0.3.2",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "19": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "background": {
        "service_worker": "service_workers\/background.js",
        "type": "module"
    },
    "options_page": "options\/options.html",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "utils.js"
            ]
        }
    ]
}