Better Booth

Improve your booth.pm experience with this extension.

Better Booth란 무엇입니까?

Better Booth은(는) tm에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve your booth.pm experience with this extension."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Better Booth 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Implementation

shop filter
This filter is used to prevent stores that sell content that the user does not want to see from being displayed in the search field.
The store's product listings will also be suppressed.

search settings
In Booth's search, the search criteria are cleared each time, so you will need to refine your search many times. By saving the settings from the options menu, the search will be performed in the same way each time.
Supported items include age restrictions, sort criteria, out-of-stock and discontinued items, and only recently published items.


translated by chatGPT, so you have some trouble, please make issue. https://github.com/TM0428/BetterBooth/issues                    

확장 프로그램 기본 정보

이름 Better Booth Better Booth
ID ncbkofnnehldkacfhlodemjdcicdfopf
공식 URL https://chromewebstore.google.com/detail/better-booth/ncbkofnnehldkacfhlodemjdcicdfopf
설명 Improve your booth.pm experience with this extension.
파일 크기 240 KB
설치 횟수 140
현재 버전 0.4.4
최근 업데이트 2023-12-21
출시 날짜 2023-06-07
평점 5.00/5 총 1 개의 평점
개발자 tm
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/TM0428/BetterBooth
도움말 페이지 URL https://tm0428.github.io/BetterBooth/
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_Name__",
    "default_locale": "ja",
    "version": "0.4.4",
    "description": "__MSG_Description__",
    "icons": {
        "128": "icon\/icon-128.png",
        "400": "icon\/icon-400.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "\/src\/option\/option.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "src\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/booth.pm\/*\/browse\/*",
                "*:\/\/booth.pm\/*\/search\/*",
                "*:\/\/booth.pm\/*\/items*",
                "*:\/\/accounts.booth.pm\/wish_lists*",
                "*:\/\/booth.pm\/ja",
                "*:\/\/booth.pm\/en",
                "*:\/\/booth.pm\/ko",
                "*:\/\/booth.pm\/zh-cn",
                "*:\/\/booth.pm\/zh-tw"
            ],
            "js": [
                "js\/filter.js"
            ],
            "css": [
                "css\/search.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.booth.pm\/items\/*"
            ],
            "exclude_matches": [
                "*:\/\/accounts.booth.pm\/*",
                "*:\/\/manage.booth.pm\/*",
                "*:\/\/checkout.booth.pm\/*",
                "*:\/\/*.booth.pm\/items\/*.json"
            ],
            "js": [
                "js\/item_get.js"
            ],
            "css": [],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.booth.pm\/*"
            ],
            "exclude_matches": [
                "*:\/\/booth.pm\/carts\/",
                "*:\/\/accounts.booth.pm\/*",
                "*:\/\/manage.booth.pm\/*",
                "*:\/\/checkout.booth.pm\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/checkout.booth.pm\/orders*"
            ],
            "js": [
                "js\/purchase.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/src\/popup\/popup.html"
            ],
            "matches": [
                "*:\/\/*.booth.pm\/*"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}