Justifier

Justify a web page in one click

Hvad er Justifier?

Justifier er en Chrome-udvidelse udviklet af Eoin Groat, og dens hovedfunktion er "Justify a web page in one click".

Download Justifier-udvidelses-CRX-fil

Download Justifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Clicking again will undo it.                    

Grundlæggende oplysninger om udvidelsen

Navn Justifier Justifier
ID kcmecpomccpjalahlhcmhogifppbbkoi
Officiel URL https://chromewebstore.google.com/detail/justifier/kcmecpomccpjalahlhcmhogifppbbkoi
Beskrivelse Justify a web page in one click
Filstørrelse 8.61 KB
Antal Installationer 65
Nuværende Version 1.1
Senest Opdateret 2016-03-24
Udgivelsesdato 2016-03-24
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Eoin Groat
Betalingsmetode free
Understøttede Sprog 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"
    ]
}