Save Code

Save, organize & share code snippets that work

Save Code क्या है?

Save Code https://thiscodeworks.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save, organize & share code snippets that work"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This tool is for saving that one piece of code that worked after (what seems like an eternity) of searching, trying and searching again. 

Save that code snippet for the next time you'll need it. 

This extension saves code snippets that you across on the web, as well as, useful webpages that help you with coding. All you have to do is click the "save" button that appears below snippets or just select text anywhere and right-click to save! You can organize your code in collections and access it anytime from the web hosted on thiscodeworks.com.

This extension syncs with the web app and Visual Studio Code extension. You can also share your snippets as a link, image, or embeddable HTML iframe.

(If you come across some bugs or issues, please let us know right away at [email protected]. Thanks!)                    

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

नाम Save Code Save Code
ID annlhfjgbkfmbbejkbdpgbmpbcjnehbb
आधिकारिक URL https://chromewebstore.google.com/detail/save-code/annlhfjgbkfmbbejkbdpgbmpbcjnehbb
विवरण Save, organize & share code snippets that work
फ़ाइल का आकार 116 KB
स्थापना संख्या 5,232
वर्तमान संस्करण 2.0.1.6
अंतिम अपडेट 2021-06-22
प्रकाशन तिथि 2020-06-30
रेटिंग 5.00/5 कुल 13 रेटिंग्स
डेवलपर https://thiscodeworks.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.thiscodeworks.com/extension
सहायता पृष्ठ URL https://www.thiscodeworks.com/contact
गोपनीयता नीति पृष्ठ URL https://www.thiscodeworks.com/privacypolicy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Code",
    "version": "2.0.1.6",
    "description": "Save, organize & share code snippets that work",
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js",
            "popup.js",
            "context.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/tcw_16.png",
            "32": "images\/tcw_32.png",
            "48": "images\/tcw_48.png",
            "128": "images\/tcw_128.png"
        }
    },
    "icons": {
        "16": "images\/tcw_16.png",
        "32": "images\/tcw_32.png",
        "48": "images\/tcw_48.png",
        "128": "images\/tcw_128.png"
    },
    "web_accessible_resources": [
        "images\/saveicon.png",
        "images\/expand.png",
        "images\/code200.png",
        "images\/code400.png",
        "sidebar.html",
        "images\/preloader.gif",
        "saveform.html",
        "tutorial.html"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/www.thiscodeworks.com https:\/\/api.thiscodeworks.com https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/materialize\/1.0.0\/js\/materialize.min.js https:\/\/code.jquery.com\/jquery-3.5.1.min.js;  object-src 'self'",
    "manifest_version": 2
}