Bandcamp History
Track your history in bandcamp as you track it on soundcloud
什麼是Bandcamp History?
Bandcamp History是由https://walidvb.com開發的Chrome擴展程式,該擴展的主要功能是“Track your history in bandcamp as you track it on soundcloud”。
擴展截圖
下載Bandcamp History擴展crx文件
下載Bandcamp History擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Add a history tab to your user profile to keep track of the releases you visited.
PS: everything is stored on your machine, not a single request is made to any third-party services 擴展基本資訊
| 名稱 | |
| ID | idihngmfkbcpglaihodahdapnaacggeh |
| 官方網址 | https://chromewebstore.google.com/detail/bandcamp-history/idihngmfkbcpglaihodahdapnaacggeh |
| 簡介 | Track your history in bandcamp as you track it on soundcloud |
| 檔案大小 | 43.64 KB |
| 安裝次數 | 113 |
| 目前版本 | 0.0.1 |
| 更新時間 | 2021-04-08 |
| 上架時間 | 2021-04-03 |
| 開發者 | https://walidvb.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | http://walidvb.com |
| 說明頁面URL | http://github.com/walidvb/bandcamp-history |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bandcamp History",
"version": "0.0.1",
"manifest_version": 2,
"description": "Track your history in bandcamp as you track it on soundcloud",
"homepage_url": "http:\/\/walidvb.com",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src\/bg\/background.html",
"persistent": false
},
"options_page": "src\/options\/index.html",
"permissions": [
"history",
"storage",
"*:\/\/*\/"
],
"commands": {
"Ctrl+J": {
"suggested_key": {
"default": "Ctrl+J",
"mac": "Command+J"
},
"description": "Ctrl+J."
}
},
"content_scripts": [
{
"matches": [
"https:\/\/bandcamp.com\/*",
"https:\/\/*.bandcamp.com\/*",
"*:\/\/*\/*"
],
"css": [
"src\/inject\/inject.css"
]
},
{
"matches": [
"https:\/\/bandcamp.com\/*",
"https:\/\/*.bandcamp.com\/*",
"*:\/\/*\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |