BrickTinker
Adds useful features for sellers on BrickLink.com
BrickTinker란 무엇입니까?
BrickTinker은(는) skvelysoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds useful features for sellers on BrickLink.com"입니다.
확장 프로그램 스크린샷
BrickTinker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
BrickTinker adds useful features for sellers on BrickLink.com. All features can be individually enabled/disabled. Features include: Search Variants Link Adds a link to catalog entry page to search for variants of that item (e.g., pieces with stickers). USA Sellers Defaults the "Items for Sale" list on catalog entry to only USA sellers when the page loads. You can still switch it afterwards. Show Median Price Calculates and shows the median price in the Price Guide section of catalog entry and the stand-alone Price Guide, but only if sorted by Price. USPS Tracking Link Adds a link on Orders Received page to USPS website for each order that has a tracking number entered. Must have Tracking Number column showing using "Customize Display". Inventory Tab in Default Search Adds a tab to "All Items" search results that includes a search of your inventory. Default to Catalog Search Defaults the search bar to "Catalog Items" instead of "All Items". Inventory Page Width Expands the width of the default inventory page so that inventory category titles to do not line wrap. "Add to Inventory" Link Adds a link to each item in inventory detail listing allowing you to add another item of that type to your inventory. Streamline Inventory Add Page Removes less used options and explanatory text in the inventory add page and rearranges remaining options to give a more streamlined and compact page that requires less scrolling and/or tabbing. Includes an option to revert back to the standard page if full options are needed. Auto Show Price Guide Automatically shows/refreshes the price guide on Inventory Add page when the page loads or the color changes. Advanced Color Picker On Inventory Add page, adds a button next to the color drop-down menu that opens a window showing all known colors as images. Click one of the images to select a color. Show Correct Color Image On Inventory Add page, automatically refreshes the picture on the inventory add page when the selected color changes. Default to Full Forum Threads Modifies all links to show full threads when selecting messages in the forum. NEW - Collapse Quotations When reading a response in a forum post, the quoted text from the response being replied to is collapsed. Clicking the collapsed area expands it to show the quoted text. Only works in full thread view. Forum Filter Grays out common forum posts such as sales and catalog change requests. NEW - Enlarge Thumbnail Images Makes thumbnail images appear twice as big (in Search, Catalog, Store, Order) NEW - 'Esc' to Close Image Previews Enables 'Esc' key to close any pop-up image previews (in Search, Catalog, Item, Store, Order).
확장 프로그램 기본 정보
이름 | BrickTinker |
ID | pikfjcohcfpohlckdhdggpcpfdkekomf |
공식 URL | https://chromewebstore.google.com/detail/bricktinker/pikfjcohcfpohlckdhdggpcpfdkekomf |
설명 | Adds useful features for sellers on BrickLink.com |
파일 크기 | 67.56 KB |
설치 횟수 | 98 |
현재 버전 | 1.2.2 |
최근 업데이트 | 2024-01-28 |
출시 날짜 | 2020-07-25 |
개발자 | skvelysoft |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BrickTinker", "version": "1.2.2", "description": "Adds useful features for sellers on BrickLink.com", "permissions": [ "storage" ], "content_scripts": [ { "js": [ "scripts\/library.js", "scripts\/search_bar.js", "scripts\/image_features.js" ], "matches": [ "https:\/\/www.bricklink.com\/*" ] }, { "js": [ "scripts\/library.js", "scripts\/image_features.js" ], "matches": [ "https:\/\/store.bricklink.com\/*" ] }, { "js": [ "scripts\/library.js", "scripts\/catalog_entry.js", "scripts\/price_guide.js" ], "matches": [ "https:\/\/www.bricklink.com\/v2\/catalog\/*", "https:\/\/store.bricklink.com\/v2\/catalog\/*" ] }, { "js": [ "scripts\/library.js", "scripts\/orders_received.js" ], "matches": [ "https:\/\/www.bricklink.com\/orderReceived.asp*" ] }, { "js": [ "scripts\/library.js", "scripts\/order_detail.js" ], "matches": [ "https:\/\/www.bricklink.com\/orderDetail.asp*" ] }, { "js": [ "scripts\/inventory.js" ], "matches": [ "https:\/\/www.bricklink.com\/inventory.asp*" ] }, { "js": [ "scripts\/library.js", "scripts\/inventory_add.js" ], "matches": [ "https:\/\/www.bricklink.com\/inventory_add.asp*" ] }, { "js": [ "scripts\/library.js", "scripts\/color_picker.js" ], "matches": [ "https:\/\/www.bricklink.com\/catalogColors.asp*" ] }, { "js": [ "scripts\/library.js", "scripts\/price_guide.js" ], "matches": [ "https:\/\/www.bricklink.com\/catalogPG.asp*&v=P*" ] }, { "js": [ "scripts\/library.js", "scripts\/inventory_detail_shared.js", "scripts\/search_page.js" ], "matches": [ "https:\/\/www.bricklink.com\/v2\/search.page*" ] }, { "js": [ "scripts\/library.js", "scripts\/inventory_detail_shared.js", "scripts\/inventory_detail.js" ], "matches": [ "https:\/\/www.bricklink.com\/v2\/inventory_detail.page*" ] }, { "js": [ "scripts\/library.js", "scripts\/message_list.js" ], "matches": [ "https:\/\/www.bricklink.com\/messageList.asp*" ] }, { "js": [ "scripts\/library.js", "scripts\/message_thread.js" ], "matches": [ "https:\/\/www.bricklink.com\/messageThread.asp*" ] } ], "icons": { "16": "images\/bt_logo_16.png", "24": "images\/bt_logo_24.png", "32": "images\/bt_logo_32.png", "48": "images\/bt_logo_48.png", "64": "images\/bt_logo_64.png" }, "action": { "default_icon": { "16": "images\/bt_logo_16.png", "24": "images\/bt_logo_24.png", "32": "images\/bt_logo_32.png", "48": "images\/bt_logo_48.png", "64": "images\/bt_logo_64.png" }, "default_title": "BrickTinker", "default_popup": "popup.html" } } |