Kollate
The only app you will ever need for bookmarking and note taking.
Kollate란 무엇입니까?
Kollate은(는) https://kollate.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The only app you will ever need for bookmarking and note taking."입니다.
확장 프로그램 스크린샷
Kollate 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Kollate is a personal knowledge management tool which allows you to bookmark links, take beautiful notes, and organize them in collections and notebooks. For free.
확장 프로그램 기본 정보
이름 | Kollate |
ID | jhfpakfaieihoeoiciffgmmbpaoocbbk |
공식 URL | https://chromewebstore.google.com/detail/kollate/jhfpakfaieihoeoiciffgmmbpaoocbbk |
설명 | The only app you will ever need for bookmarking and note taking. |
파일 크기 | 2.18 MB |
설치 횟수 | 437 |
현재 버전 | 0.143 |
최근 업데이트 | 2019-05-01 |
출시 날짜 | 2019-04-27 |
평점 | 4.25/5 총 8 개의 평점 |
개발자 | https://kollate.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://kollate.io |
개인정보 보호 정책 페이지 URL | https://kollate.io/public/note/6e26cef0-53f9-11e9-b3cd-37b18fc6ebb7 |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Kollate", "version": "0.143", "manifest_version": 2, "description": "The only app you will ever need for bookmarking and note taking.", "icons": { "16": "images\/kollate-16.png", "48": "images\/kollate-48.png", "128": "images\/kollate-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Kollate", "default_icon": "images\/kollate-128.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/localhost\/*", "*:\/\/kollate.io\/*", "*:\/\/*.kollate.io\/*" ], "css": [], "js": [ "inject_head.js", "content_script.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "broadcast_screenshot.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/kollate.io\/*" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "activeTab", "storage", "tabs", "contextMenus" ], "web_accessible_resources": [ "add-resource.html", "images\/*.png", "editor.html", "dropdown.html", "screenshot.html", "hide-dropdown.html", "unhide-note.html", "settings.html", "thumbnail-selector.html", "login-error.html" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+K", "mac": "Command+K" } } } } |