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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |