Markie

Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.

¿Qué es Markie?

Markie es una extensión de Chrome desarrollada por Markie, y su función principal es "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Markie

Descarga archivos de extensión Markie en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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).                    

Información Básica de la Extensión

Nombre Markie Markie
ID ehhkpofebhdiffegjnahjofmdjaphlmf
URL Oficial https://chromewebstore.google.com/detail/markie/ehhkpofebhdiffegjnahjofmdjaphlmf
Descripción Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.
Tamaño del Archivo 620 KB
Cantidad de Instalaciones 200
Versión Actual 1.2.2
Última Actualización 2020-12-02
Fecha de Publicación 2020-10-14
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Markie
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://getmarkie.com
URL de la Página de Ayuda https://getmarkie.com/legal
Idiomas Soportados 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"
    ]
}