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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Markie 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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