Outline All Elements
Add CSS Outline property to all elements on the page for debugging CSS Layout.
Outline All Elements क्या है?
Outline All Elements MohannadNaj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add CSS Outline property to all elements on the page for debugging CSS Layout."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Outline All Elements एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A Chrome Extension for adding CSS Outline property (with different colors) to all elements on the page. Mainly this is useful for debugging CSS Layout and discovering potential issues. Notes: - Click the extension icon for activating/deactivating. - The outline colors are randomized based on it's order on the page. - The colors are randomized by assigning different cumulative Hue degree and a fixed Saturation (99%) and Light (50%). - On deactivating, the extension will restore the old outline value if it was there, and remove the style HTML attribute if it wasn't there before activating. Source Code: https://github.com/MohannadNaj/outline-all-elements
एक्सटेंशन की मूल जानकारी
नाम | Outline All Elements |
ID | nppiigcgjgghnpdflckpalmdmpnfglfa |
आधिकारिक URL | https://chromewebstore.google.com/detail/outline-all-elements/nppiigcgjgghnpdflckpalmdmpnfglfa |
विवरण | Add CSS Outline property to all elements on the page for debugging CSS Layout. |
फ़ाइल का आकार | 31.23 KB |
स्थापना संख्या | 285 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2020-01-10 |
प्रकाशन तिथि | 2020-01-09 |
डेवलपर | MohannadNaj |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Outline All Elements", "version": "1.0", "description": "Add CSS Outline property to all elements on the page for debugging CSS Layout.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "permissions": [ "activeTab" ], "browser_action": { "default_icon": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" } }, "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" } } |