Flexer

Mobile/Responsive Web Testing for Front-End Web Developers

什麼是Flexer?

Flexer是由Derek Story開發的Chrome擴展程式,該擴展的主要功能是“Mobile/Responsive Web Testing for Front-End Web Developers”。

擴展截圖

screenshot
screenshot
screenshot

下載Flexer擴展crx文件

下載Flexer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Flexer provides efficient mobile/responsive web testing for web developers. Quickly navigate through options using quick commands to free yourself from clicking through an array of options. Flexer accurately emulates the most popular mobile devices on the market.

Flexer allows you to instantly resize the viewport/window without the need to touch your mouse. You get a mobile browser at the touch of a button.

Instructions:

1. Install
2. Enable Flexer for a site domain by right clicking on the site page and choosing "Add Domain" under the Flexer options.
3. Reload the page and hit M (be sure nothing on the page is in focus. example: textbox)  to open/close the Flexer mobile viewer. (Or open from the right-click context menu)
4. You should now be in the mobile mode. 


Quick Commands:

Toggle Mobile Viewer: M 
Phone View: J 
Tablet View: K 
Toggle Landscape View: L 
Refresh Viewer: R


For feature request, bug reports or general comments, please use the support tab or email me directly at:
[email protected]                    

擴展基本資訊

名稱 Flexer Flexer
ID ooieopaimbegfibodhhdkfpljnnjmabg
官方網址 https://chromewebstore.google.com/detail/flexer/ooieopaimbegfibodhhdkfpljnnjmabg
簡介 Mobile/Responsive Web Testing for Front-End Web Developers
檔案大小 53.04 KB
安裝次數 235
目前版本 1.0
更新時間 2015-11-16
上架時間 2015-11-16
評分 3.20/5 共 5 次評分
開發者 Derek Story
付費類型 free
擴展官網 http://github.com/derekstory
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flexer",
    "description": "Mobile\/Responsive Web Testing for Front-End Web Developers",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/*",
        "html\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/mobile_viewer.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/context_menu.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus"
    ]
}