42FM
42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -…
Vad är 42FM?
42FM är en Chrome-tillägg utvecklad av https://42fm.app, och dess huvudfunktion är "42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -…".
Tilläggsskärmbilder
Ladda ner 42FM-förlängningens CRX-fil
Ladda ner 42FM-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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"
Grundläggande Information om Tillägg
Namn | 42FM |
ID | djkopjknjkhhhlbpaooiffegfhibkdka |
Officiell webbadress | https://chromewebstore.google.com/detail/42fm/djkopjknjkhhhlbpaooiffegfhibkdka |
Beskrivning | 42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -… |
Filstorlek | 597 KB |
Antal Installationer | 1,078 |
Aktuell Version | 0.1.3 |
Senast Uppdaterad | 2023-10-07 |
Publiceringsdatum | 2022-02-22 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | https://42fm.app |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://42fm.app/ |
Stödda Språk | 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\/*" ] } |