Inspect CSS

The easiest way to inspect and edit CSS

Vad är Inspect CSS?

Inspect CSS är en Chrome-tillägg utvecklad av kholid060, och dess huvudfunktion är "The easiest way to inspect and edit CSS".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Inspect CSS-förlängningens CRX-fil

Ladda ner Inspect CSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Features: 
🔎 Get CSS Properties from any element by selecting it
✏️ Get and edit element attributes
📷 Download website assets
⌨️ Add your custom CSS to the website
🎨 Get the color palette of the website
🧭 DOM Navigation
🎯 Color picker

GitHub:
https://github.com/Kholid060/inspect-css                    

Grundläggande Information om Tillägg

Namn Inspect CSS Inspect CSS
ID fbopfffegfehobgoommphghohinpkego
Officiell webbadress https://chromewebstore.google.com/detail/inspect-css/fbopfffegfehobgoommphghohinpkego
Beskrivning The easiest way to inspect and edit CSS
Filstorlek 380 KB
Antal Installationer 5,344
Aktuell Version 1.0.2
Senast Uppdaterad 2024-02-09
Publiceringsdatum 2020-09-15
Betyg 4.20/5 Totalt 10 Betyg
Utvecklare kholid060
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Kholid060/inspect-css
Hjälpsida URL https://github.com/Kholid060/inspect-css/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "version": "1.0.2",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "action": [],
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/woff2\/*.woff2",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}