Keep it Quick

Keep important data and info and reuse it quickly.

Keep it Quick란 무엇입니까?

Keep it Quick은(는) etaylib에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep important data and info and reuse it quickly."입니다.

확장 프로그램 스크린샷

screenshot

Keep it Quick 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have you ever used the computer and on some point really needed to use your driver's licence id, your office address or your parent PO BOX number?

How many times did you have to get up of your chair and look for it?
Well, now you can keep the data INSIDE the browser for easy fetching.
Quickly add, remove, copy or fill any piece of important data you need for later use.

Important: Your data is discrete, we don't save it or track it.                    

확장 프로그램 기본 정보

이름 Keep it Quick Keep it Quick
ID gobpjokhejbdfdmdoojdkkliikomniol
공식 URL https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol
설명 Keep important data and info and reuse it quickly.
파일 크기 126 KB
설치 횟수 312
현재 버전 0.1.0
최근 업데이트 2019-02-02
출시 날짜 2019-02-02
평점 3.00/5 총 1 개의 평점
개발자 etaylib
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://etaylib.s3.amazonaws.com/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Keep it Quick",
    "short_name": "Keep it Quick",
    "description": "Keep important data and info and reuse it quickly.",
    "version": "0.1.0",
    "browser_action": {
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "scripts.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "icons": {
        "128": "logo.png",
        "16": "logo.png",
        "48": "logo.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "jquery-1.11.3.min.js",
            "background.js"
        ]
    }
}