holo-nonstop-extension
Enjoy Hololive content continuously
holo-nonstop-extensionとは何ですか?
holo-nonstop-extensionはqwe19272375によって開発されたChromeの拡張機能で、その主な機能は「Enjoy Hololive content continuously」です。
拡張機能のスクリーンショット
holo-nonstop-extension拡張機能のCRXファイルをダウンロード
holo-nonstop-extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Install this extension to enable tabs to watch hololive live streams without having trouble spending time to find another live stream manually.
Please refer to https://github.com/k4r1suma/holo-nonstop-extension#usage for usage 拡張機能の基本情報
| 名前 | |
| ID | inkmfkgkfcicnjingdpppdffmjeohppn |
| 公式URL | https://chromewebstore.google.com/detail/holo-nonstop-extension/inkmfkgkfcicnjingdpppdffmjeohppn |
| 説明 | Enjoy Hololive content continuously |
| ファイルサイズ | 559 KB |
| インストール数 | 200 |
| 現在のバージョン | 0.1.1 |
| 最終更新日 | 2020-08-22 |
| 公開日 | 2020-08-13 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | qwe19272375 |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://github.com/k4r1suma/holo-nonstop-extension |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "holo-nonstop-extension",
"author": "k4r1suma",
"version": "0.1.1",
"description": "Enjoy Hololive content continuously",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"16": "img\/[email protected]",
"32": "img\/[email protected]",
"64": "img\/[email protected]",
"128": "img\/[email protected]"
},
"default_popup": "popup.html"
},
"permissions": [
"declarativeContent",
"tabs",
"storage"
],
"icons": {
"16": "img\/[email protected]",
"32": "img\/[email protected]",
"64": "img\/[email protected]",
"128": "img\/[email protected]"
},
"manifest_version": 2
} | |