Scan CSS

A script to inspect, scan and copy CSS properties of any element on the web page

什麼是Scan CSS?

Scan CSS是由akshaymalik191開發的Chrome擴展程式,該擴展的主要功能是“A script to inspect, scan and copy CSS properties of any element on the web page”。

擴展截圖

screenshot

下載Scan CSS擴展crx文件

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

擴展使用說明

                        A free tool to inspect and edit CSS right in the browser without a need to open developer tools.

Press 'alt + s' to start the inspection.

Click on "Copy" to copy the CSS properties of the element.

Click on "Copy All" to copy the CSS properties of the element as well of its children.                    

擴展基本資訊

名稱 Scan CSS Scan CSS
ID mkdaolldfcljbalhclcakgjjiklajdof
官方網址 https://chromewebstore.google.com/detail/scan-css/mkdaolldfcljbalhclcakgjjiklajdof
簡介 A script to inspect, scan and copy CSS properties of any element on the web page
檔案大小 115 KB
安裝次數 293
目前版本 1.0.2
更新時間 2022-11-29
上架時間 2022-11-26
評分 2.50/5 共 4 次評分
開發者 akshaymalik191
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scan CSS",
    "description": "A script to inspect, scan and copy CSS properties of any element on the web page",
    "version": "1.0.2",
    "icons": {
        "512": "icons\/Icon-512.png",
        "256": "icons\/Icon-256.png",
        "196": "icons\/Icon-196.png",
        "128": "icons\/Icon-128.png",
        "64": "icons\/Icon-64.png",
        "32": "icons\/Icon-32.png",
        "16": "icons\/Icon-16.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}