Crestify

Easy 1-click bookmarking with Crestify

ما هو Crestify؟

Crestify هو إضافة Chrome تم تطويرها بواسطة https://crestify.com، والميزة الرئيسية لها هي "Easy 1-click bookmarking with Crestify".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Crestify

قم بتنزيل ملفات الامتداد Crestify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
    }
}