Justifier

Justify a web page in one click

Vad är Justifier?

Justifier är en Chrome-tillägg utvecklad av Eoin Groat, och dess huvudfunktion är "Justify a web page in one click".

Ladda ner Justifier-förlängningens CRX-fil

Ladda ner Justifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        At the click of a button justify all the paragraphs on the page.

Clicking again will undo it.                    

Grundläggande Information om Tillägg

Namn Justifier Justifier
ID kcmecpomccpjalahlhcmhogifppbbkoi
Officiell webbadress https://chromewebstore.google.com/detail/justifier/kcmecpomccpjalahlhcmhogifppbbkoi
Beskrivning Justify a web page in one click
Filstorlek 8.61 KB
Antal Installationer 65
Aktuell Version 1.1
Senast Uppdaterad 2016-03-24
Publiceringsdatum 2016-03-24
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Eoin Groat
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.1",
    "icons": {
        "128": "justified.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "style.css"
    ]
}