Browserstack Device Info

Extract device information from Browserstacks emulators

Browserstack Device Info là gì?

Browserstack Device Info là một tiện ích mở rộng Chrome được phát triển bởi https://deviceinfo.io, và tính năng chính của nó là "Extract device information from Browserstacks emulators".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Browserstack Device Info

Tải xuống các tệp mở rộng Browserstack Device Info dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Browserstack Device Info Browserstack Device Info
ID dfnbbfeklihaghlapiiinghocfljbinc
URL Chính Thức https://chromewebstore.google.com/detail/browserstack-device-info/dfnbbfeklihaghlapiiinghocfljbinc
Mô tả Extract device information from Browserstacks emulators
Kích Thước Tệp 63.1 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2017-04-27
Ngày Phát Hành 2017-04-27
Nhà Phát Triển https://deviceinfo.io
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Blumed/browserstack-deviceinfo-chrome-ext
URL Trang Trợ Giúp https://github.com/Blumed/browserstack-deviceinfo-chrome-ext/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}