Bandcamp Enhancement Suite

Provides extra functionality for Bandcamp

Bandcamp Enhancement Suite란 무엇입니까?

Bandcamp Enhancement Suite은(는) Bjornsoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides extra functionality for Bandcamp"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The purpose of this extension is to make Bandcamp easier to navigate for larger collections of music. It has been designed with DJs in mind.

1.7.2 Change:
* fix bug causing plugin to fail to load in Firefox
* security updates

1.7.1 Change:
* remove 'offlineAudioContext' with simpler code calling 'decodeAudioData' by @sabjorn in #150
* Bump ua-parser-js from 0.7.31 to 0.7.33 by @dependabot in #151
* Bump socket.io-parser from 4.2.1 to 4.2.3 by @dependabot in #156
* Bump engine.io and socket.io by @dependabot in #155
* Bump yaml from 2.1.1 to 2.2.2 by @dependabot in #154
* add Stripe links in call to support popup by @sabjorn in #159

1.6.2 Change:
* fix Firefox waveform clicking bug
* add delay to call to support popup (30 days)

1.6.1 Change:
* update to Manifest v3 for Firefox (now version parity)

1.6.0 Change:
* update to Manifest v3

1.5.4 Change:
* fix blocking default Chrome keyboard shortcuts

1.5.3 Change:
* update popup checkout dialog to be centred in user view at all times

1.5.2 Change:
* re-add Checkout feature

1.5.1 Changes:
* remove Checkout feature because it caused Waveform feature to break
* remove storage requirement from Chrome

1.5.0 Changes:
* Add popup when users check out to provide information about how to contribute to the plugin

1.4.0 Changes:
* add github sponsorship link in browser action page
* add Half Past Vibes records link in browser action page

1.3.1 Changes:
* generated cURL file now works across wider range of shells
* generated cURL file can now be run as a shell script (added shebang)

1.3.0 Changes:
* playlist in album views to be right below the player
* state of the waveform toggle persists (config backend)

1.2.0 Changes:
* Add Waveform display. Users can enable/disable a Wavform on album pages.
* Changed layout of player UI

1.1.1 Changes:
* Fix keyboard focus bug preventing space bar from working in search bar of player pages.

1.1.0 Changes:
* Keyboard control for player
* Mouse control for player playbar to jump to time selection
* Purchased download assistance
* Volume control.

1.0.4 Changes:
* Update storage backend for larger capacity (and versatility for future developments).

1.0.3 Changes:
* Preview state tracked when loading albums on their own page
* Preview state is accessible from multiple machines using the same google account (chrome storage api)
* Tool tips pop up on injected UI elements
* Single track "albums" preview properly
* Featured albums are made visible in main grid view and can thus be previewed
* Improperly rendered UI elements removed completely from "collection" pages

0.6.2 Changes:
* Application runs correctly again

0.6.1 Changes:
* Widens preview window

0.6.0 Changes:
* adds tracking (local cache) of albums preview history
* adds clickable element to represent (and alter) previewed history 

0.5.0 Changes:
* removed album artwork from iFrames.
* preview window now shows up below preview button.

0.4.1 Changes:
* iFrames always in front (no longer occluded by any other element on screen)

0.4.0 Changes:
* Collections and Wishlist now have preview button
* Clicking on any preview button with close any open preview before starting next preview.                    

확장 프로그램 기본 정보

이름 Bandcamp Enhancement Suite Bandcamp Enhancement Suite
ID padcfdpdlnpdojcihidkgjnmleeingep
공식 URL https://chromewebstore.google.com/detail/bandcamp-enhancement-suit/padcfdpdlnpdojcihidkgjnmleeingep
설명 Provides extra functionality for Bandcamp
파일 크기 2.68 MB
설치 횟수 2,310
현재 버전 1.7.2
최근 업데이트 2024-02-12
출시 날짜 2020-05-27
평점 5.00/5 총 21 개의 평점
개발자 Bjornsoft
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sabjorn/BandcampEnhancementSuite
개인정보 보호 정책 페이지 URL https://bes.sabjorn.net/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Steven A. Bjornson",
    "name": "Bandcamp Enhancement Suite",
    "version": "1.7.2",
    "manifest_version": 3,
    "description": "Provides extra functionality for Bandcamp",
    "homepage_url": "https:\/\/github.com\/sabjorn\/BandcampEnhancementSuite",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "action": {
        "default_icon": "icons\/icon16.png",
        "default_title": "Bandcamp Enhancement Suite",
        "default_popup": "html\/browser_action.html"
    },
    "host_permissions": [
        "http:\/\/*.bandcamp.com\/*",
        "https:\/\/*.bandcamp.com\/*",
        "https:\/\/t4.bcbits.com\/stream\/*"
    ],
    "minimum_chrome_version": "93",
    "background": {
        "service_worker": "dist\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.bandcamp.com\/*",
                "https:\/\/*.bandcamp.com\/*"
            ],
            "js": [
                "dist\/main.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{3ca9d5aa-ad9f-4f7f-861b-999fe5c87273}",
            "strict_min_version": "109.0"
        }
    }
}