Crestify

Easy 1-click bookmarking with Crestify

Crestify là gì?

Crestify là một tiện ích mở rộng Chrome được phát triển bởi https://crestify.com, và tính năng chính của nó là "Easy 1-click bookmarking with Crestify".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Crestify

Tải xuống các tệp mở rộng Crestify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Crestify Crestify
ID afhekhbgacigmlndepbnppnpbhgdalfp
URL Chính Thức https://chromewebstore.google.com/detail/crestify/afhekhbgacigmlndepbnppnpbhgdalfp
Mô tả Easy 1-click bookmarking with Crestify
Kích Thước Tệp 465 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.1.3
Cập Nhật Lần Cuối 2022-02-18
Ngày Phát Hành 2020-07-17
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://crestify.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.crestify.com
URL Trang Chính Sách Bảo Mật https://www.crestify.com/tos
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}