Word Extender

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

O que é Word Extender?

Word Extender é uma extensão do Chrome desenvolvida por Erik Häyry, e sua principal característica é "Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Word Extender

Baixe arquivos de extensão Word Extender no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Word Extender Word Extender
ID acbnhhgmoaadadkeappeicndifpbjjel
URL Oficial https://chromewebstore.google.com/detail/word-extender/acbnhhgmoaadadkeappeicndifpbjjel
Descrição Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design
Tamanho do Arquivo 18.17 KB
Contagem de Instalações 71
Versão Atual 1.1
Última Atualização 2013-08-08
Data de Publicação 2013-08-08
Desenvolvedor Erik Häyry
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}