jQuery Unique Selector
Find the unique selector for any element on page.
ما هو jQuery Unique Selector؟
jQuery Unique Selector هو إضافة Chrome تم تطويرها بواسطة https://20paths.com، والميزة الرئيسية لها هي "Find the unique selector for any element on page.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة jQuery Unique Selector
قم بتنزيل ملفات الامتداد jQuery Unique Selector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Find the unique selector for any element on page It will find an optimal selector that’s unique to the element selected. Highlight the elemt with mouse and for the elements that cannot be accessed with mouse you can pick the parents of any element. Very useful for quickly getting selector for any element for testing frameworks and writing selector based jQuery code.
معلومات أساسية عن التمديد
الاسم | jQuery Unique Selector |
ID | cmdmlphjbobhblimniofbnlfkmpcjlgd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd |
الوصف | Find the unique selector for any element on page. |
حجم الملف | 80.23 KB |
عدد التثبيتات | 6,827 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2015-09-21 |
تاريخ النشر | 2015-09-21 |
تقييم | 2.88/5 مجموع تقييمات 33 |
المطور | https://20paths.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://20paths.com/privacy |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "jQuery Unique Selector", "version": "0.1.1", "description": "Find the unique selector for any element on page.", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": "css_selector_icon_128.png", "default_title": "Click to start" }, "icons": { "128": "css_selector_icon_128.png", "48": "css_selector_icon_48.png", "16": "css_selector_icon_16.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "js\/jquery.js", "js\/jquery.hotkeys.js", "\/js\/jquery.hoverIntent.js", "\/src\/dom-selector.js", "\/src\/highlighter.js", "\/src\/jquery.ct.js", "\/js\/main.js" ] } ], "web_accessible_resources": [ "**.css", "**.html", "**.js", "**.png", "**.gif", "**.map" ], "permissions": [ "activeTab" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |