DECS - Code Snippets Manager

Capture code snippets on the web and store them securely for future use with just one click.

DECS - Code Snippets Manager क्या है?

DECS - Code Snippets Manager https://decs.xyz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Capture code snippets on the web and store them securely for future use with just one click."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Capture code snippets on the web and store them securely for future use with just one click.

We all crawl the web in search of code. How many times have we painfully repeated steps to land on that same piece of code again? With DECS browser extension, using single-click, capture the code snippets on the go. 👨‍💻👩‍💻

Now no more copy-pasting code snippets into text files or all-purpose notebooks. With DECS all-in-one workspace and browser extension, using single-click, capture the code snippets on the go, store and search them seamlessly. 

Store your private snippets, tokens, configurations, certificates, and other sensitive data securely and tightly control their access. You can also tag, share and sync your curated snippet knowledge base within a team (coming soon) or with the world.

Your data is end-to-end encrypted by default and is secure from falling into the wrong hands. You alone have access to the private keys so no one else including us can see your data ( all this happens in your browser behind the scenes).

Try it now; It’s Secure, and it's Free! 

Above all, truly own your data.

Privacy policy: https://app.decs.xyz/privacy                    

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

नाम DECS - Code Snippets Manager DECS - Code Snippets Manager
ID mkclebnkdjjpamialfgieminnkdepbcl
आधिकारिक URL https://chromewebstore.google.com/detail/decs-code-snippets-manage/mkclebnkdjjpamialfgieminnkdepbcl
विवरण Capture code snippets on the web and store them securely for future use with just one click.
फ़ाइल का आकार 368 KB
स्थापना संख्या 558
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2019-07-28
प्रकाशन तिथि 2019-07-27
रेटिंग 4.40/5 कुल 5 रेटिंग्स
डेवलपर https://decs.xyz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://app.decs.xyz
सहायता पृष्ठ URL https://docs.decs.xyz/guide/faqs.html
गोपनीयता नीति पृष्ठ URL https://app.decs.xyz/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DECS - Code Snippets Manager",
    "homepage_url": "https:\/\/app.decs.xyz",
    "short_name": "DECS",
    "description": "Capture code snippets on the web and store them securely for future use with just one click.",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/content-script.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "decs-extension",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "version": "0.1.1"
}