BrickLink Helper Chrome Extension
Add some new features on top of the existing site.
ما هو BrickLink Helper Chrome Extension؟
BrickLink Helper Chrome Extension هو إضافة Chrome تم تطويرها بواسطة pricco، والميزة الرئيسية لها هي "Add some new features on top of the existing site.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة BrickLink Helper Chrome Extension
قم بتنزيل ملفات الامتداد BrickLink Helper Chrome Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
2020-11-29 * Bulk duplicate for Wanted Lists 2020-02-25 * Bulk delete for Wanted Lists * Merge wanted lists * Force page size for Wanted List's detail page
معلومات أساسية عن التمديد
الاسم | BrickLink Helper Chrome Extension |
ID | jhjcnccenajddejmnjjopbaakomhakco |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/bricklink-helper-chrome-e/jhjcnccenajddejmnjjopbaakomhakco |
الوصف | Add some new features on top of the existing site. |
حجم الملف | 1012 KB |
عدد التثبيتات | 222 |
النسخة الحالية | 0.0.2 |
آخر تحديث | 2020-11-29 |
تاريخ النشر | 2020-04-25 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | pricco |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/pricco/bricklink-helper-chrome-extension |
عنوان صفحة المساعدة | https://github.com/pricco/bricklink-helper-chrome-extension/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BrickLink Helper Chrome Extension", "description": "Add some new features on top of the existing site.", "version": "0.0.2", "icons": { "16": "icon16x.png", "48": "icon48x.png", "128": "icon128x.png" }, "options_page": "index.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.bricklink.com\/*" ], "css": [ "static\/css\/main.css" ], "js": [ "static\/js\/main.js" ] } ], "permissions": [ "storage" ] } |