Bandcamp Volume Control
Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
什麼是Bandcamp Volume Control?
Bandcamp Volume Control是由xnaas開發的Chrome擴展程式,該擴展的主要功能是“Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.”。
擴展截圖
下載Bandcamp Volume Control擴展crx文件
下載Bandcamp Volume Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension adds a volume slider to album and song pages on the bandcamp domain and some bandcamp sites using custom domains (such as music.monstercat.com). See screenshots for examples.
Original extension: https://addons.mozilla.org/en-US/firefox/addon/bandcamp-player-volume-control/
Original GitLab repo: https://gitlab.com/markoooo/bandcamp-volume-control
This extension's github repo: https://github.com/xnaas/bcvc 擴展基本資訊
| 名稱 | |
| ID | pbbndlbppenfhgnkkcmkcmeodbfkgimf |
| 官方網址 | https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf |
| 簡介 | Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains. |
| 檔案大小 | 8.22 KB |
| 安裝次數 | 618 |
| 目前版本 | 0.2.7 |
| 更新時間 | 2021-01-06 |
| 上架時間 | 2021-01-02 |
| 評分 | 4.50/5 共 10 次評分 |
| 開發者 | xnaas |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/xnaas/bcvc |
| 說明頁面URL | https://github.com/xnaas/bcvc/issues |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Bandcamp Volume Control",
"description": "Adds a volume slider to bandcamp album\/song pages on the official bandcamp domain and some bandcamp sites with custom domains.",
"version": "0.2.7",
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.bandcamp.com\/*",
"https:\/\/music.monstercat.com\/*",
"https:\/\/shop.attackthemusic.com\/*",
"https:\/\/listen.20buckspin.com\/*"
],
"js": [
"content.js"
],
"all_frames": true
}
],
"permissions": [
"storage"
]
} | |