Quotemark

Save quotes from all over the web!

Quotemark란 무엇입니까?

Quotemark은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save quotes from all over the web!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Quotemark lets you save quotes from the internet and bookmark them. A list of quotes is saved in the extension's popup. Clicking on the quote, brings you back to the original web-page, where the quote is highlighted and in focus.                    

확장 프로그램 기본 정보

이름 Quotemark Quotemark
ID klgfbfafpkfkchoeemoeicggojkdgecl
공식 URL https://chromewebstore.google.com/detail/quotemark/klgfbfafpkfkchoeemoeicggojkdgecl
설명 Save quotes from all over the web!
파일 크기 20.62 KB
설치 횟수 18
현재 버전 1.0
최근 업데이트 2019-11-21
출시 날짜 2019-11-16
개발자 Unknown
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quotemark",
    "version": "1.0",
    "description": "Save quotes from all over the web!",
    "permissions": [
        "tabs",
        "contextMenus",
        "",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "contextmenu.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": ".\/icons\/iconcontrast.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/iconcontrast.png",
        "48": ".\/icons\/iconcontrast.png",
        "128": ".\/icons\/iconcontrast.png"
    },
    "manifest_version": 2
}