42FM

42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -…

Cos'è 42FM?

42FM è un'estensione di Chrome sviluppata da https://42fm.app, e la sua funzione principale è "42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione 42FM

Scarica i file di estensione 42FM in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        42FM allows you to listen to music on Twitch with synchronization between users that use this extension.

Available commands:
- "!fm "

Commands for broadcaster/mods
- "!fm help"
- "!fm pause"
- "!fm play"
- "!fm skip"
- "!fm clear"                    

Informazioni di Base sull'Estensione

Nome 42FM 42FM
ID djkopjknjkhhhlbpaooiffegfhibkdka
URL Ufficiale https://chromewebstore.google.com/detail/42fm/djkopjknjkhhhlbpaooiffegfhibkdka
Descrizione 42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -…
Dimensione del File 597 KB
Conteggio Installazioni 1,078
Versione Corrente 0.1.3
Ultimo Aggiornamento 2023-10-07
Data di Pubblicazione 2022-02-22
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore https://42fm.app
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://42fm.app/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "42FM",
    "version": "0.1.3",
    "action": {
        "default_title": "42FM",
        "default_icon": {
            "32": "assets\/logo-32.png"
        }
    },
    "icons": {
        "32": "assets\/logo-32.png",
        "64": "assets\/logo-64.png",
        "128": "assets\/logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitch.tv\/*",
                "*:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "content.js",
                "inject.js",
                "iframe.js"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.twitch.tv\/*"
        ]
    },
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ]
}