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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย DECS - Code Snippets Manager

ดาวน์โหลดไฟล์ส่วนขยาย DECS - Code Snippets Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}