Kollate
The only app you will ever need for bookmarking and note taking.
Kollate là gì?
Kollate là một tiện ích mở rộng Chrome được phát triển bởi https://kollate.io, và tính năng chính của nó là "The only app you will ever need for bookmarking and note taking.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Kollate
Tải xuống các tệp mở rộng Kollate dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Kollate |
ID | jhfpakfaieihoeoiciffgmmbpaoocbbk |
URL Chính Thức | https://chromewebstore.google.com/detail/kollate/jhfpakfaieihoeoiciffgmmbpaoocbbk |
Mô tả | The only app you will ever need for bookmarking and note taking. |
Kích Thước Tệp | 2.18 MB |
Số Lần Cài Đặt | 437 |
Phiên Bản Hiện Tại | 0.143 |
Cập Nhật Lần Cuối | 2019-05-01 |
Ngày Phát Hành | 2019-04-27 |
Đánh Giá | 4.25/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://kollate.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://kollate.io |
URL Trang Chính Sách Bảo Mật | https://kollate.io/public/note/6e26cef0-53f9-11e9-b3cd-37b18fc6ebb7 |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |