showHTML
This extension shows information about HTML elements on a web page when you hover over them.
showHTML क्या है?
showHTML https://tech-in-check.blogspot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension shows information about HTML elements on a web page when you hover over them."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में showHTML एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
showHTML is a browser extension for developers and those who are curious about web page setup. It places a small text stripe at the top or bottom of any web page. As elements on the page are hovered over, details about each HTML element are displayed, including tag name, ID (if any) and classes (if any). The text stripe is customizable to provide convenience and accessibility. In the options you can change the font size, color, and placement of the text stripe. You can also move the stripe while in use; clicking on the text stripe will toggle it between the top and bottom of the browser window. Version 1.1.2 improvements: - Fixed bug that caused freezing in v1.1.1 Version 1.1.1 improvements: - Corrected options display for smaller screens - Added div enlargement when needed to show all text Version 1.1 improvements: - Font size and stripe position are customizable - Text stripe position can be toggled on mouse click Version 1.0.2 improvements: - Theme (text and background color) is customizable - Options page with storage sync added Version 1.0.1 improvements: - Removed unnecessary permission
एक्सटेंशन की मूल जानकारी
नाम | showHTML |
ID | hpidplbbhlibnefjdbepbinmanddipne |
आधिकारिक URL | https://chromewebstore.google.com/detail/showhtml/hpidplbbhlibnefjdbepbinmanddipne |
विवरण | This extension shows information about HTML elements on a web page when you hover over them. |
फ़ाइल का आकार | 12.59 KB |
स्थापना संख्या | 483 |
वर्तमान संस्करण | 1.1.2 |
अंतिम अपडेट | 2016-05-07 |
प्रकाशन तिथि | 2016-05-07 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://tech-in-check.blogspot.com |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://tech-in-check.blogspot.com/p/showhtml.html |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "showHTML", "description": "This extension shows information about HTML elements on a web page when you hover over them.", "version": "1.1.2", "short_name": "Show HTML tag names, IDs & classes for a web page", "homepage_url": "http:\/\/tech-in-check.blogspot.com\/p\/showhtml.html", "author": "freginold", "icons": { "16": "showHTML16.png", "48": "showHTML48.png", "128": "showHTML128.png" }, "browser_action": { "default_icon": { "19": "showHTML19.png", "38": "showHTML38.png" }, "default_title": "showHTML" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ] } |