Anduril

Adds useful features to the Twitch interface

Andurilとは何ですか?

AndurilはthisRaptoriによって開発されたChromeの拡張機能で、その主な機能は「Adds useful features to the Twitch interface」です。

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

screenshot

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

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

拡張機能の使用方法

                        As each Twitch community grows, it becomes increasingly difficult to manage. The chat in particular can become hard to follow, and important messages quickly get lost in the deluge of messages. Anduril adds features to the Twitch user interface designed to help streamers and moderators keep up!

No guarantees that features will always work - when Twitch makes updates, this extension may break. If you find any bugs, please open an issue.

Note that some features will only work if you have your Twitch UI language set to English!                    

拡張機能の基本情報

名前 Anduril Anduril
ID hilmmmfdfaflmanloccldjiokgafaiaa
公式URL https://chromewebstore.google.com/detail/anduril/hilmmmfdfaflmanloccldjiokgafaiaa
説明 Adds useful features to the Twitch interface
ファイルサイズ 29.53 KB
インストール数 21
現在のバージョン 1.7.4
最終更新日 2022-12-11
公開日 2021-01-15
開発者 thisRaptori
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/thisRaptori/anduril
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anduril",
    "version": "1.7.4",
    "description": "Adds useful features to the Twitch interface",
    "author": "Joe Raptori",
    "manifest_version": 2,
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icon\/icon32.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "features\/chatFilters.js",
                "features\/fullHeightWhispers.js",
                "features\/hideTheSpider.js",
                "features\/hideViewerCounts.js",
                "features\/userHighlight.js",
                "features\/userNote.js",
                "features\/userPopup.js"
            ],
            "css": [
                "features\/chatFilters.css",
                "features\/fullHeightWhispers.css",
                "features\/hideTheSpider.css",
                "features\/hideViewerCounts.css",
                "features\/userHighlight.css",
                "features\/userNote.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}