Right-Click Borescope
List all images under your cursor, even ones hidden by other elements
ما هو Right-Click Borescope؟
Right-Click Borescope هو إضافة Chrome تم تطويرها بواسطة blackle mori، والميزة الرئيسية لها هي "List all images under your cursor, even ones hidden by other elements".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Right-Click Borescope
قم بتنزيل ملفات الامتداد Right-Click Borescope بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Dig into web pages, find buried treasure. Right-Click Borescope allows you to view all images under your cursor, even if there's other images covering it, or if it's an image that has "right-click save" disabled.
معلومات أساسية عن التمديد
الاسم | Right-Click Borescope |
ID | mmdokamaalplkfiddbkhpfjmkhecbcnh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh |
الوصف | List all images under your cursor, even ones hidden by other elements |
حجم الملف | 70.58 KB |
عدد التثبيتات | 537 |
النسخة الحالية | 0.0.4 |
آخر تحديث | 2022-05-10 |
تاريخ النشر | 2022-03-29 |
تقييم | 5.00/5 مجموع تقييمات 12 |
المطور | blackle mori |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/blackle/Right-Click-Borescope |
عنوان صفحة المساعدة | https://github.com/blackle/Right-Click-Borescope/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Right-Click Borescope", "version": "0.0.4", "description": "List all images under your cursor, even ones hidden by other elements", "permissions": [ "contextMenus" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "client.js" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "manifest_version": 3 } |