Kollate
The only app you will ever need for bookmarking and note taking.
Qu'est-ce que Kollate ?
Kollate est une extension Chrome développée par https://kollate.io, et sa fonction principale est "The only app you will ever need for bookmarking and note taking.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Kollate
Téléchargez les fichiers d'extension Kollate au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Kollate |
ID | jhfpakfaieihoeoiciffgmmbpaoocbbk |
URL Officiel | https://chromewebstore.google.com/detail/kollate/jhfpakfaieihoeoiciffgmmbpaoocbbk |
Description | The only app you will ever need for bookmarking and note taking. |
Taille du Fichier | 2.18 MB |
Nombre d'Installations | 437 |
Version Actuelle | 0.143 |
Dernière Mise à Jour | 2019-05-01 |
Date de Publication | 2019-04-27 |
Évaluation | 4.25/5 Total 8 Évaluations |
Développeur | https://kollate.io |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://kollate.io |
URL de la Page de Politique de Confidentialité | https://kollate.io/public/note/6e26cef0-53f9-11e9-b3cd-37b18fc6ebb7 |
Langues Prises en Charge | 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" } } } } |