Showroom Helper
This extension provides convenience functions to Showroom.
Cos'è Showroom Helper?
Showroom Helper è un'estensione di Chrome sviluppata da windslash, e la sua funzione principale è "This extension provides convenience functions to Showroom.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Showroom Helper
Scarica i file di estensione Showroom Helper 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
この拡張機能はShowroomを色んな便利機能を提供します - 一気に10個星投げる - YouTubeを無効にする - ストリーミングURLをクリップボードにコピー - バナーを後ろにする - 50カウント This is a tool of providing helpful features to the live streaming website Showroom (https://www.showroom-live.com/). - Send 10 stars at a time - Disable YouTube playback - Copy streaming URL to clipboard - let banner behind the video area - Counting to 50
Informazioni di Base sull'Estensione
Nome | Showroom Helper |
ID | idfmjdjoikafiimapdkidadjjlfppdma |
URL Ufficiale | https://chromewebstore.google.com/detail/showroom-helper/idfmjdjoikafiimapdkidadjjlfppdma |
Descrizione | This extension provides convenience functions to Showroom. |
Dimensione del File | 225 KB |
Conteggio Installazioni | 644 |
Versione Corrente | 1.7.0 |
Ultimo Aggiornamento | 2022-04-21 |
Data di Pubblicazione | 2020-05-24 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | windslash |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Showroom Helper", "description": "This extension provides convenience functions to Showroom.", "version": "1.7.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.showroom-live.com\/*" ], "js": [ "page.js" ] } ], "page_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_popup": "popup.html", "default_title": "Showroom Helper" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "activeTab", "storage" ] } |