Markie
Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.
什麼是Markie?
Markie是由Markie開發的Chrome擴展程式,該擴展的主要功能是“Markie is an intelligent bookmarking tool with auto-categorization, auto-tagging, highlighting, searching, and much more.”。
擴展截圖
下載Markie擴展crx文件
下載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). 擴展基本資訊
| 名稱 | |
| ID | ehhkpofebhdiffegjnahjofmdjaphlmf |
| 官方網址 | 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"
]
} | |