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"
    ]
}