Word Extender

Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design

Cos'è Word Extender?

Word Extender è un'estensione di Chrome sviluppata da Erik Häyry, e la sua funzione principale è "Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Word Extender

Scarica i file di estensione Word Extender in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        When you quickly want to check how your links, buttons, menus etc looks with longer words or sentences. The extension can also be handy when you want to test your website for multiple languages or developing for responsive design.

The extensions finds words or sentences on your page and convert them to longer ones.                    

Informazioni di Base sull'Estensione

Nome Word Extender Word Extender
ID acbnhhgmoaadadkeappeicndifpbjjel
URL Ufficiale https://chromewebstore.google.com/detail/word-extender/acbnhhgmoaadadkeappeicndifpbjjel
Descrizione Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design
Dimensione del File 18.17 KB
Conteggio Installazioni 71
Versione Corrente 1.1
Ultimo Aggiornamento 2013-08-08
Data di Pubblicazione 2013-08-08
Sviluppatore Erik Häyry
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Extender",
    "description": "Extension that replaces strings and\/or words with longer ones. This can be handy when developing for responsive design",
    "version": "1.1",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/*\/*",
        "activeTab"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "name": "Extend words",
        "default_icon": "icons\/icon16.png",
        "default_title": "Word Extender",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/page.css"
            ]
        }
    ]
}