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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}