Crestify

Easy 1-click bookmarking with Crestify

Crestify란 무엇입니까?

Crestify은(는) https://crestify.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy 1-click bookmarking with Crestify"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        With Crestify, you get permanent archives for every single page you bookmark. You can search through the entire contents of all the pages you browse, so you will never lose a site again. 
Save all your open tabs in a single click. 
Read articles in a clutter-free environment with reader mode.                    

확장 프로그램 기본 정보

이름 Crestify Crestify
ID afhekhbgacigmlndepbnppnpbhgdalfp
공식 URL https://chromewebstore.google.com/detail/crestify/afhekhbgacigmlndepbnppnpbhgdalfp
설명 Easy 1-click bookmarking with Crestify
파일 크기 465 KB
설치 횟수 25
현재 버전 1.1.3
최근 업데이트 2022-02-18
출시 날짜 2020-07-17
평점 3.75/5 총 4 개의 평점
개발자 https://crestify.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.crestify.com
개인정보 보호 정책 페이지 URL https://www.crestify.com/tos
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crestify",
    "description": "Easy 1-click bookmarking with Crestify",
    "manifest_version": 2,
    "homepage_url": "https:\/\/crestify.com",
    "version": "1.1.3",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "icon1.png",
        "default_title": "Click to bookmark"
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true,
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:5000\/*\/*",
                "https:\/\/crestify.tunnelto.dev\/*\/*",
                "https:\/\/www.crestify.com\/*\/*"
            ],
            "js": [
                "libs\/browser-polyfill.min.js",
                "js\/login_content_script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "http:\/\/localhost:5000\/*\/*",
                "https:\/\/crestify.tunnelto.dev\/*\/*",
                "https:\/\/www.crestify.com\/*\/*"
            ],
            "js": [
                "libs\/browser-polyfill.min.js",
                "libs\/jquery.min.js",
                "libs\/md5.js",
                "libs\/page-metadata-parser.bundle.js",
                "libs\/htmlclean.js",
                "js\/rel_abs.min.js",
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "icons": {
        "16": "\/icons\/16.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    }
}