BrickTinker
Adds useful features for sellers on BrickLink.com
什么是BrickTinker?
BrickTinker是由skvelysoft开发的Chrome扩展程序,该扩展的主要功能是“Adds useful features for sellers on BrickLink.com”。
扩展截图
下载BrickTinker扩展crx文件
下载BrickTinker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |