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 là gì?

Justify là một tiện ích mở rộng Chrome được phát triển bởi Tom Kent, và tính năng chính của nó là "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…".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Justify 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

                        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!                    

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

Tên Justify Justify
ID odkfbmljaomnibofnefflonfehhbhnoo
URL Chính Thức https://chromewebstore.google.com/detail/justify/odkfbmljaomnibofnefflonfehhbhnoo
Mô tả 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…
Kích Thước Tệp 49.42 KB
Số Lần Cài Đặt 1,653
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-04-23
Ngày Phát Hành 2016-04-23
Đánh Giá 4.18/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Tom Kent
Loại Thanh Toán free
Trang Web Mở Rộng http://justify.tomkent.me
URL Trang Trợ Giúp http://justify.tomkent.me
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}