Anduril

Adds useful features to the Twitch interface

Qu'est-ce que Anduril ?

Anduril est une extension Chrome développée par thisRaptori, et sa fonction principale est "Adds useful features to the Twitch interface".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Anduril

Téléchargez les fichiers d'extension Anduril au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Anduril Anduril
ID hilmmmfdfaflmanloccldjiokgafaiaa
URL Officiel https://chromewebstore.google.com/detail/anduril/hilmmmfdfaflmanloccldjiokgafaiaa
Description Adds useful features to the Twitch interface
Taille du Fichier 29.53 KB
Nombre d'Installations 21
Version Actuelle 1.7.4
Dernière Mise à Jour 2022-12-11
Date de Publication 2021-01-15
Développeur thisRaptori
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/thisRaptori/anduril
Langues Prises en Charge 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"
    ]
}