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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture code snippets on the web and store them securely for future use with just one click."입니다.
확장 프로그램 스크린샷
DECS - Code Snippets Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } |