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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
            ]
        }
    ]
}