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"입니다.

확장 프로그램 스크린샷

screenshot

Bandcamp History 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}