Better Booth

Improve your booth.pm experience with this extension.

Better Booth क्या है?

Better Booth tm द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improve your booth.pm experience with this extension."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Better Booth एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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]"
        }
    }
}