Markie

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

Что такое Markie?

Markie - это расширение Chrome, разработанное Markie, и его основная функция - "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Markie

Скачайте файлы расширений Markie в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Markie Markie
ID ehhkpofebhdiffegjnahjofmdjaphlmf
Официальный URL https://chromewebstore.google.com/detail/markie/ehhkpofebhdiffegjnahjofmdjaphlmf
Описание Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.
Размер файла 620 KB
Количество установок 200
Текущая Версия 1.2.2
Последнее Обновление 2020-12-02
Дата публикации 2020-10-14
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Markie
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://getmarkie.com
URL страницы помощи https://getmarkie.com/legal
Поддерживаемые языки 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"
    ]
}