Outline Chrome Extension

Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).

ما هو Outline Chrome Extension؟

Outline Chrome Extension هو إضافة Chrome تم تطويرها بواسطة Alejandro Zepeda، والميزة الرئيسية لها هي "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Outline Chrome Extension

قم بتنزيل ملفات الامتداد Outline Chrome Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension will help you to add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning), it's great for web design, or just to verify that your HTML + CSS code is working as expected.                    

معلومات أساسية عن التمديد

الاسم Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
عنوان URL الرسمي https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
الوصف Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
حجم الملف 12.84 KB
عدد التثبيتات 3,151
النسخة الحالية 0.1.0
آخر تحديث 2022-06-16
تاريخ النشر 2019-04-26
تقييم 5.00/5 مجموع تقييمات 7
المطور Alejandro Zepeda
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/alejandrozepeda/outline-chrome-extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outline Chrome Extension",
    "version": "0.1.0",
    "author": "Alejandro Zepeda",
    "description": "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/alejandrozepeda\/outline-chrome-extension",
    "icons": {
        "128": "icons\/outline.png"
    },
    "browser_action": {
        "default_icon": "icons\/outline-black.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "storage",
        "activeTab"
    ]
}