NerdeFocus
Quickly debug focus problems when testing a page for accessibility issues.
NerdeFocus क्या है?
NerdeFocus wizzyfx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly debug focus problems when testing a page for accessibility issues."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NerdeFocus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When activated, NerdeFocus displays the focus history with CSS selectors, and overlays an easy-to-follow focus indicator on the page. NerdeFocus is great for detecting focus resets, testing keyboard focus, and debugging screen reader issues in modern web apps. To use the extension, open your browser’s Developer Tools, navigate to the NerdeFocus tab, and click "Record". NerdeFocus is a free and Open-source project.
एक्सटेंशन की मूल जानकारी
नाम | NerdeFocus |
ID | lpfiljldhgjecfepfljnbjnbjfhennpd |
आधिकारिक URL | https://chromewebstore.google.com/detail/nerdefocus/lpfiljldhgjecfepfljnbjnbjfhennpd |
विवरण | Quickly debug focus problems when testing a page for accessibility issues. |
फ़ाइल का आकार | 46.69 KB |
स्थापना संख्या | 2,067 |
वर्तमान संस्करण | 0.3.2 |
अंतिम अपडेट | 2022-01-12 |
प्रकाशन तिथि | 2019-05-29 |
रेटिंग | 4.43/5 कुल 7 रेटिंग्स |
डेवलपर | wizzyfx |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/wizzyfx/nerdeFocusPlugIn |
सहायता पृष्ठ URL | https://github.com/wizzyfx/nerdeFocusPlugIn/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NerdeFocus", "version": "0.3.2", "manifest_version": 2, "description": "Quickly debug focus problems when testing a page for accessibility issues.", "homepage_url": "https:\/\/github.com\/wizzyfx\/nerdeFocusPlugIn", "devtools_page": "src\/devtools\/devtools.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "js": [ "vendor\/jquery-3.2.1.slim.min.js", "src\/inject\/inject.js" ] } ] } |