Coder Notes
This extension allows you to save snippets of code from around the web
Coder Notes란 무엇입니까?
Coder Notes은(는) codernotesdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to save snippets of code from around the web"입니다.
확장 프로그램 스크린샷
Coder Notes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
확장 프로그램 기본 정보
이름 | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
공식 URL | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
설명 | This extension allows you to save snippets of code from around the web |
파일 크기 | 51.63 KB |
설치 횟수 | 16 |
현재 버전 | 0.0.0.3 |
최근 업데이트 | 2016-04-03 |
출시 날짜 | 2016-04-03 |
평점 | 3.50/5 총 2 개의 평점 |
개발자 | codernotesdev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://codernotes.us |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Coder Notes", "description": "This extension allows you to save snippets of code from around the web", "version": "0.0.0.3", "browser_action": { "default_icon": "img\/codernotesCE.png", "default_popup": "login.html", "default_title": "Save to Coder Notes" }, "permissions": [ "storage", "unlimitedStorage", "activeTab", "https:\/\/ajax.googleapis.com\/", "tabs", "http:\/\/limitless-island-46764.herokuapp.com\/*" ], "background": { "scripts": [ "jquery-1.12.2.min.js", "popup.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/limitless-island-46764.herokuapp.com\/*" ], "js": [ "jquery-1.12.2.min.js", "popup.js" ] } ], "externally_connectable": { "matches": [ "http:\/\/limitless-island-46764.herokuapp.com\/*" ] } } |