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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Justify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
        }
    }
}