Outline All Elements

Add CSS Outline property to all elements on the page for debugging CSS Layout.

什麼是Outline All Elements?

Outline All Elements是由MohannadNaj開發的Chrome擴展程式,該擴展的主要功能是“Add CSS Outline property to all elements on the page for debugging CSS Layout.”。

擴展截圖

screenshot

下載Outline All Elements擴展crx文件

下載Outline All Elements擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Outline All Elements
ID nppiigcgjgghnpdflckpalmdmpnfglfa
官方網址 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"
    }
}