Focused Element
Highlight the focusing element and log it in console.
Focused Element क्या है?
Focused Element LiJunLe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight the focusing element and log it in console."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Focused Element एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
During debugging a page, sometimes it is very hard to notice which element is focusing in the page. This extension will highlight the focusing element and log it in console. Even after turn off the extension, the developer can hover on the element in console to find back the element in DOM structure.
एक्सटेंशन की मूल जानकारी
नाम | Focused Element |
ID | elaccagjpdmjkcjogbdmcpcplfinifbh |
आधिकारिक URL | https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh |
विवरण | Highlight the focusing element and log it in console. |
फ़ाइल का आकार | 27.42 KB |
स्थापना संख्या | 1,140 |
वर्तमान संस्करण | 0.2.0 |
अंतिम अपडेट | 2020-09-04 |
प्रकाशन तिथि | 2019-04-20 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | LiJunLe |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/lijunle/chrome-extension-focused-element |
सहायता पृष्ठ URL | https://github.com/lijunle/chrome-extension-focused-element/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focused Element", "description": "Highlight the focusing element and log it in console.", "version": "0.2.0", "author": "Junle Li", "icons": { "16": "icons\/active-16.png", "32": "icons\/active-32.png", "48": "icons\/active-48.png", "128": "icons\/active-128.png" }, "browser_action": { "default_title": "Enable", "default_icon": { "16": "icons\/inactive-16.png", "32": "icons\/inactive-32.png", "48": "icons\/inactive-48.png", "128": "icons\/inactive-128.png" } }, "permissions": [ "activeTab" ], "background": { "scripts": [ "lib\/background.js" ], "persistent": false } } |