Showroom Helper
This extension provides convenience functions to Showroom.
Showroom Helperとは何ですか?
Showroom Helperはwindslashによって開発されたChromeの拡張機能で、その主な機能は「This extension provides convenience functions to Showroom.」です。
拡張機能のスクリーンショット
Showroom Helper拡張機能のCRXファイルをダウンロード
Showroom Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        この拡張機能は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                     拡張機能の基本情報
| 名前 |   |  
| ID | idfmjdjoikafiimapdkidadjjlfppdma | 
| 公式URL | https://chromewebstore.google.com/detail/showroom-helper/idfmjdjoikafiimapdkidadjjlfppdma | 
| 説明 | This extension provides convenience functions to Showroom. | 
| ファイルサイズ | 225 KB | 
| インストール数 | 644 | 
| 現在のバージョン | 1.7.0 | 
| 最終更新日 | 2022-04-21 | 
| 公開日 | 2020-05-24 | 
| 評価 | 4.00/5 合計 4 レビュー | 
| 開発者 | windslash | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 対応言語 | 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"
    ]
}  |  |