Heading Tag Markup
This extension show the h-Tag on page.
ما هو Heading Tag Markup؟
Heading Tag Markup هو إضافة Chrome تم تطويرها بواسطة Webreload، والميزة الرئيسية لها هي "This extension show the h-Tag on page.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Heading Tag Markup
قم بتنزيل ملفات الامتداد Heading Tag Markup بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة المساعدة | 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"
}
} | |