Unmark

Unmark's Chrome extension for saving your marks.

Unmark란 무엇입니까?

Unmark은(는) https://unmark.it에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unmark's Chrome extension for saving your marks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The Unmark Chrome extension allows you to easily save pages to your Unmark account. 

You can do the following:

- Right click on any page to quickly save it to your account behind-the-scenes

- Click the extension icon provided to save/update the page with more details

- Archive, restore and delete the page from your account using the extension icon

- Search your saved marks from the omnibox (Type unmark then your search). Search is restricted to paid accounts only.

- Open source! Fork it on GitHub: https://github.com/plainmade/unmark-chrome                    

확장 프로그램 기본 정보

이름 Unmark Unmark
ID cdhnljlbeehjgddokagghpfgahhlifch
공식 URL https://chromewebstore.google.com/detail/unmark/cdhnljlbeehjgddokagghpfgahhlifch
설명 Unmark's Chrome extension for saving your marks.
파일 크기 81.95 KB
설치 횟수 509
현재 버전 1.0.1
최근 업데이트 2014-04-02
출시 날짜 2014-04-02
평점 3.93/5 총 15 개의 평점
개발자 https://unmark.it
결제 유형 free
확장 프로그램 웹 사이트 https://unmark.it
도움말 페이지 URL http://help.unmark.it
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unmark",
    "description": "Unmark's Chrome extension for saving your marks.",
    "version": "1.0.1",
    "homepage_url": "https:\/\/unmark.it",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/unmark.it\/"
    ],
    "omnibox": {
        "keyword": "unmark"
    },
    "background": {
        "scripts": [
            "js\/third_party\/jquery.js",
            "js\/unmark\/base.js",
            "js\/unmark\/omnibox.js",
            "js\/unmark\/contexts.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Save to Unmark",
        "default_popup": "unmark.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/unmark\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}