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