CSS Debugger
A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
CSS Debugger क्या है?
CSS Debugger Mathias Meldgaard Pedersen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CSS Debugger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple extension that injects debug styles into any page helping you debug style and structure issues.
एक्सटेंशन की मूल जानकारी
नाम | CSS Debugger |
ID | jmlihgplnddolhopaoengncklepinhgc |
आधिकारिक URL | https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc |
विवरण | A lightweight extension for Google chrome that shows the outline of all CSS elements on the page. |
फ़ाइल का आकार | 7.27 KB |
स्थापना संख्या | 1,104 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2020-04-07 |
प्रकाशन तिथि | 2020-04-02 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Mathias Meldgaard Pedersen |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | http://www.mathiaspedersen.dk |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CSS Debugger", "version": "0.1", "description": "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.", "permissions": [ "tabs" ], "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "CSS Debugger", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } } |