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文件
下载Kollate扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } } } |