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 |
Eメール | [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" ] } ] } |