Arcelik Smart TV Browser Emulator

This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible

Arcelik Smart TV Browser Emulator là gì?

Arcelik Smart TV Browser Emulator là một tiện ích mở rộng Chrome được phát triển bởi Cagatay Sonmez, và tính năng chính của nó là "This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Arcelik Smart TV Browser Emulator

Tải xuống các tệp mở rộng Arcelik Smart TV Browser Emulator 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

                        This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible.
Currently following features are supported

★ Virtual remote controller interface
★ arSmartTV Smart TV API is injected to each pages
★ Accept-Language header of each web request is modified according to the selected language option
★ User-Agent header of each web request is modified according to the selected Smart TV platform
★ navigator.userAgent and navigator.language properties is modified according to the selected Smart TV platform

You may get inconvenient response from the servers while this extension is enabled, since it overrides navigator object User-Agent header of each web request. In order to avoid this problem, please add problematic URLs to Excluded Host or disable extension by selecting platform as N/A when you are not working on your smart TV application.

Know issues:
 ➤ arSmartTV.getBroadbandIpAddress() returns dummy IP address in order to avoid additional web request                    

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

Tên Arcelik Smart TV Browser Emulator Arcelik Smart TV Browser Emulator
ID aibdjehbnedbkkojmjohamkloglhlonb
URL Chính Thức https://chromewebstore.google.com/detail/arcelik-smart-tv-browser/aibdjehbnedbkkojmjohamkloglhlonb
Mô tả This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible
Kích Thước Tệp 589 KB
Số Lần Cài Đặt 9,741
Phiên Bản Hiện Tại 2.3
Cập Nhật Lần Cuối 2021-06-03
Ngày Phát Hành 2018-02-07
Đánh Giá 4.27/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Cagatay Sonmez
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Arcelik Smart TV Browser Emulator",
    "version": "2.3",
    "description": "This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible",
    "manifest_version": 2,
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Virtual Remote Controller",
        "default_icon": "icon_inactive.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "arSmartTV.js"
    ]
}