Browserstack Device Info

Extract device information from Browserstacks emulators

Browserstack Device Info란 무엇입니까?

Browserstack Device Info은(는) https://deviceinfo.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extract device information from Browserstacks emulators"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Browserstack Device Info 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Do you work to make the internet better? Using tools like Browserstack to find bugs and issues during QA/UAT in production flows create quality sites/apps. Placing device information in our bug tracking software allow for less emails. Consistent information makes for reliability. This chrome extension creates the following data when a device/browser is loaded on Browserstack.

- Device
- Browser
- Browser Version
- OS
- OS Version
- Orientation
- Resolution
- Viewport
- Bootstrap Size
- Date
- Time                    

확장 프로그램 기본 정보

이름 Browserstack Device Info Browserstack Device Info
ID dfnbbfeklihaghlapiiinghocfljbinc
공식 URL https://chromewebstore.google.com/detail/browserstack-device-info/dfnbbfeklihaghlapiiinghocfljbinc
설명 Extract device information from Browserstacks emulators
파일 크기 63.1 KB
설치 횟수 73
현재 버전 1.0.3
최근 업데이트 2017-04-27
출시 날짜 2017-04-27
개발자 https://deviceinfo.io
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Blumed/browserstack-deviceinfo-chrome-ext
도움말 페이지 URL https://github.com/Blumed/browserstack-deviceinfo-chrome-ext/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Browserstack Device Info",
    "description": "Extract device information from Browserstacks emulators",
    "version": "1.0.3",
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.browserstack.com\/*"
            ],
            "css": [
                "assets\/css\/main.css"
            ],
            "js": [
                "assets\/js\/vendor\/jquery-2.2.3.min.js",
                "assets\/js\/vendor\/moment-2.18.1.min.js",
                "assets\/js\/vendor\/clipboard.min.js",
                "assets\/js\/contentScript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "assets\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/images\/icon128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    }
}