Better Booth
Improve your booth.pm experience with this extension.
Better Booth là gì?
Better Booth là một tiện ích mở rộng Chrome được phát triển bởi tm, và tính năng chính của nó là "Improve your booth.pm experience with this extension.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Better Booth
Tải xuống các tệp mở rộng Better Booth dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Better Booth |
ID | ncbkofnnehldkacfhlodemjdcicdfopf |
URL Chính Thức | https://chromewebstore.google.com/detail/better-booth/ncbkofnnehldkacfhlodemjdcicdfopf |
Mô tả | Improve your booth.pm experience with this extension. |
Kích Thước Tệp | 240 KB |
Số Lần Cài Đặt | 140 |
Phiên Bản Hiện Tại | 0.4.4 |
Cập Nhật Lần Cuối | 2023-12-21 |
Ngày Phát Hành | 2023-06-07 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | tm |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/TM0428/BetterBooth |
URL Trang Trợ Giúp | https://tm0428.github.io/BetterBooth/ |
Ngôn Ngữ Được Hỗ Trợ | 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]" } } } |