Search on BrickLink
Search on BrickLink by selecting text and search via context menu or keyboard shortcut.
ما هو Search on BrickLink؟
Search on BrickLink هو إضافة Chrome تم تطويرها بواسطة Stef Käser، والميزة الرئيسية لها هي "Search on BrickLink by selecting text and search via context menu or keyboard shortcut.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Search on BrickLink
قم بتنزيل ملفات الامتداد Search on BrickLink بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
With this extension you select LEGO related text on any website and search the selected text via context menu or keyboard shortcut on BrickLink. The selected text, can be any keyword, a part number or a set number. The BrickLink website opens in a new tab with the selected text as search argument. Release notes v1.4 Added keyboard shortcuts. After selecting a text you can use the following shortcuts: Alt+Shift+S => opens set info. Alt+Shift+P => opens part info. Alt+Shift+F => searches for keyword on BrickLink. Keyboard shortcuts can be changed under: chrome://extensions/shortcuts Multiple set no. can be selected and opened.
معلومات أساسية عن التمديد
الاسم | Search on BrickLink |
ID | eicgehidhiifikcocejmmohjmappilgo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/search-on-bricklink/eicgehidhiifikcocejmmohjmappilgo |
الوصف | Search on BrickLink by selecting text and search via context menu or keyboard shortcut. |
حجم الملف | 323 KB |
عدد التثبيتات | 44 |
النسخة الحالية | 1.4 |
آخر تحديث | 2023-05-03 |
تاريخ النشر | 2022-05-12 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Stef Käser |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search on BrickLink", "description": "Search on BrickLink by selecting text and search via context menu or keyboard shortcut.", "version": "1.4", "manifest_version": 3, "author": "Stef K\u00e4ser", "permissions": [ "contextMenus", "scripting", "activeTab" ], "action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png" } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "service_worker": "serviceworker.js" }, "commands": { "search-set": { "suggested_key": { "default": "Alt+Shift+S", "mac": "Command+Shift+S" }, "description": "Open set info on BrickLink for selected text." }, "search-part": { "suggested_key": { "default": "Alt+Shift+P", "mac": "Command+Shift+P" }, "description": "Open part info on BrickLink for selected text." }, "search-keyword": { "suggested_key": { "default": "Alt+Shift+F", "mac": "Command+Shift+F" }, "description": "Search for selected text on BrickLink." } } } |