Justify

Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…

ما هو Justify؟

Justify هو إضافة Chrome تم تطويرها بواسطة Tom Kent، والميزة الرئيسية لها هي "Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…".

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

screenshot
screenshot
screenshot

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

قم بتنزيل ملفات الامتداد Justify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be difficult to adjust to non-justified text seen on many websites. This extension allows you to immediately justify all text either by clicking the icon or through the keyboard shortcut (Ctrl + Shift + J on Windows and Cmd + Shift + J on Mac). You can reverse the justification as easily as you enabled it by hitting the keyboard shortcut again or clicking the extension icon!                    

معلومات أساسية عن التمديد

الاسم Justify Justify
ID odkfbmljaomnibofnefflonfehhbhnoo
عنوان URL الرسمي https://chromewebstore.google.com/detail/justify/odkfbmljaomnibofnefflonfehhbhnoo
الوصف Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…
حجم الملف 49.42 KB
عدد التثبيتات 1,653
النسخة الحالية 0.1
آخر تحديث 2016-04-23
تاريخ النشر 2016-04-23
تقييم 4.18/5 مجموع تقييمات 11
المطور Tom Kent
نوع الدفع free
موقع الإضافة http://justify.tomkent.me
عنوان صفحة المساعدة http://justify.tomkent.me
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Justify",
    "version": "0.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon_justified.png",
        "default_title": "Justify!"
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "commands": {
        "justify": {
            "suggested_key": {
                "default": "Ctrl+Shift+J",
                "mac": "Command+Shift+J"
            },
            "description": "Justify All Text"
        }
    }
}