BrickTinker
Adds useful features for sellers on BrickLink.com
O que é BrickTinker?
BrickTinker é uma extensão do Chrome desenvolvida por skvelysoft, e sua principal característica é "Adds useful features for sellers on BrickLink.com".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BrickTinker
Baixe arquivos de extensão BrickTinker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | BrickTinker |
ID | pikfjcohcfpohlckdhdggpcpfdkekomf |
URL Oficial | https://chromewebstore.google.com/detail/bricktinker/pikfjcohcfpohlckdhdggpcpfdkekomf |
Descrição | Adds useful features for sellers on BrickLink.com |
Tamanho do Arquivo | 67.56 KB |
Contagem de Instalações | 98 |
Versão Atual | 1.2.2 |
Última Atualização | 2024-01-28 |
Data de Publicação | 2020-07-25 |
Desenvolvedor | skvelysoft |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |