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
扩展基本信息
名称 | Bandcamp History |
ID | idihngmfkbcpglaihodahdapnaacggeh |
官方URL | 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" ] } ] } |