Markie
Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.
Qu'est-ce que Markie ?
Markie est une extension Chrome développée par Markie, et sa fonction principale est "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Markie
Téléchargez les fichiers d'extension Markie 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
Markie for Chrome automatically categorizes and tags your bookmarks according to its content using artificial intelligence. You don't have to worry about organizing your bookmarks anymore. ** Features List ** - Automatic categorization and tagging using AI - Finding similar bookmarks using AI - Article view mode - Automatic tagging - Highlighting (in article mode) - Permanent storage of articles (if the page gets taken down, you'll still have a copy of the article).
Informations de Base sur l'Extension
Nom | Markie |
ID | ehhkpofebhdiffegjnahjofmdjaphlmf |
URL Officiel | https://chromewebstore.google.com/detail/markie/ehhkpofebhdiffegjnahjofmdjaphlmf |
Description | Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more. |
Taille du Fichier | 620 KB |
Nombre d'Installations | 200 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2020-12-02 |
Date de Publication | 2020-10-14 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Markie |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://getmarkie.com |
URL de la Page d'Aide | https://getmarkie.com/legal |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Markie", "description": "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.", "version": "1.2.2", "manifest_version": 2, "permissions": [ "activeTab", "storage" ], "icons": { "32": "icons\/markie-new-32.png", "128": "icons\/markie-new-128.png" }, "browser_action": { "default_title": "Markie", "default_icon": { "32": "icons\/markie-new-bw-32.png", "128": "icons\/markie-new-bw-128.png" } }, "commands": { "_execute_browser_action": { "description": "Save Bookmark to Markie", "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" } } }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "popup\/getSource.js" ] } ], "web_accessible_resources": [ "popup\/save\/save.html" ] } |