Anduril

Adds useful features to the Twitch interface

Anduril란 무엇입니까?

Anduril은(는) thisRaptori에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds useful features to the Twitch interface"입니다.

확장 프로그램 스크린샷

screenshot

Anduril 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}