Markie

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

Markie là gì?

Markie là một tiện ích mở rộng Chrome được phát triển bởi Markie, và tính năng chính của nó là "Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Markie

Tải xuống các tệp mở rộng Markie dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Markie Markie
ID ehhkpofebhdiffegjnahjofmdjaphlmf
URL Chính Thức https://chromewebstore.google.com/detail/markie/ehhkpofebhdiffegjnahjofmdjaphlmf
Mô tả Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.
Kích Thước Tệp 620 KB
Số Lần Cài Đặt 200
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2020-12-02
Ngày Phát Hành 2020-10-14
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Markie
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://getmarkie.com
URL Trang Trợ Giúp https://getmarkie.com/legal
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}