Heading Tag Markup
This extension show the h-Tag on page.
Heading Tag Markup क्या है?
Heading Tag Markup Webreload द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension show the h-Tag on page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Heading Tag Markup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension visual highlights the h-Tag on every page. With the add-on "Heading Tag Markup" you can highlight the h1-h6 tag on the website. Features - h1 - h6 Highlight day - Display which day is currently being output - differentiation of h1 - h6 tags by different colors - function can be activated / deactivated directly with a click on the Add-On icon
एक्सटेंशन की मूल जानकारी
नाम | Heading Tag Markup |
ID | keeiendlnmbddkjjhnbegaaheohkfhoj |
आधिकारिक URL | https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj |
विवरण | This extension show the h-Tag on page. |
फ़ाइल का आकार | 8.25 KB |
स्थापना संख्या | 6,832 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2019-09-06 |
प्रकाशन तिथि | 2019-09-06 |
रेटिंग | 4.57/5 कुल 7 रेटिंग्स |
डेवलपर | Webreload |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | http://www.wrel.de/google-tag-manager-support/ |
समर्थित भाषाएँ | de |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Heading Tag Markup", "version": "1.0", "manifest_version": 2, "description": "This extension show the h-Tag on page.", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "storage" ], "icons": { "128": "h-tag.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "heading.js" ], "css": [ "heading.css" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "Heading Tag Settings" } } |