SnipCSS

Extract the CSS/HTML for any element on any page, only take the styles you want

SnipCSS क्या है?

SnipCSS https://www.snipcss.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extract the CSS/HTML for any element on any page, only take the styles you want"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SnipCSS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        SnipCSS extracts all CSS styles associated with any portion of a webpage. It works on all websites, and after a few clicks you get the CSS, HTML and Images associated with the section of the website you are trying to recreate.

ANY COOL DESIGN YOU SEE ON THE WEB CAN BE YOUR PERSONAL TEMPLATE FOR QUICK PROTOTYPING!
========================================
If you tried to do the same by copying/pasting by hand it would probably take 20 minutes, but with SnipCSS you can select and get all styles including ones with media queries in under a minute. I even use it on sections of websites I created myself in other projects, so I can get a quick reusable HTML/CSS component to plug into my new project. 

Unlike other CSS extractor extensions that use "Computed Styles", SnipCSS uses the Chrome DevTools protocol.  Just like when you use devtools you see a list of associated styles, SnipCSS reconstructs that list for each element in the subtree of the DOM snippet.  

All images, fonts and everything else needed for the design is downloaded, and you can easily export all the files into a zip file.

PRO VERSION LAUNCHED! 
========================================
Get CSS from multiple resolutions or multiple elements using the Pro Version! Also advanced features like no-conflict CSS classes, scoping, removing unnecessary attributes/classes, and creating a sub-selection of items have been added for Pro members.  

Version 1.7.0 adds the ability to turn your snippets into React/Vue templates by using ChatGPT. 
The template version of a snippet injects Lorem Ipsum data into the html so copyrighted images/text are automatically replaced.  You can also use Stable Diffusion to replace images in the HTML.  Generative AI features require a free SnipCSS account.  

Just visit SnipCSS.com and sign up if you're interested in unlocking these advanced features.                    

एक्सटेंशन की मूल जानकारी

नाम SnipCSS SnipCSS
ID hbdnoadcmapfbngbodpppofgagiclicf
आधिकारिक URL https://chromewebstore.google.com/detail/snipcss/hbdnoadcmapfbngbodpppofgagiclicf
विवरण Extract the CSS/HTML for any element on any page, only take the styles you want
फ़ाइल का आकार 12.9 MB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.8.4
अंतिम अपडेट 2023-11-15
प्रकाशन तिथि 2019-05-27
रेटिंग 4.13/5 कुल 23 रेटिंग्स
डेवलपर https://www.snipcss.com
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://www.snipcss.com
गोपनीयता नीति पृष्ठ URL https://www.snipcss.com/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SnipCSS",
    "version": "1.8.4",
    "description": "Extract the CSS\/HTML for any element on any page, only take the styles you want",
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "icons": {
        "16": "img\/snipcss-16x16.png",
        "48": "img\/snipcss-48x48.png",
        "128": "img\/snipcss-128x128.png"
    },
    "action": {
        "default_icon": "img\/snip_kiwi_small_css3.png",
        "default_title": "SnipCSS",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "permissions": [
        "debugger",
        "storage",
        "activeTab",
        "scripting",
        "tabs",
        "unlimitedStorage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.snipcss.com\/*"
        ]
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "templates\/*",
                "css\/*",
                "img\/*",
                "fonts\/*.ttf",
                "sound\/*",
                "js\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}