Word Extender

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

Word Extenderとは何ですか?

Word ExtenderはErik Häyryによって開発されたChromeの拡張機能で、その主な機能は「Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Word Extender拡張機能のCRXファイルをダウンロード

Word Extender拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Word Extender Word Extender
ID acbnhhgmoaadadkeappeicndifpbjjel
公式URL https://chromewebstore.google.com/detail/word-extender/acbnhhgmoaadadkeappeicndifpbjjel
説明 Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design
ファイルサイズ 18.17 KB
インストール数 71
現在のバージョン 1.1
最終更新日 2013-08-08
公開日 2013-08-08
開発者 Erik Häyry
Eメール [email protected]
支払い方法 free
対応言語 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"
            ]
        }
    ]
}