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란 무엇입니까?

Arcelik Smart TV Browser Emulator은(는) Cagatay Sonmez에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Arcelik Smart TV Browser Emulator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Arcelik Smart TV Browser Emulator Arcelik Smart TV Browser Emulator
ID aibdjehbnedbkkojmjohamkloglhlonb
공식 URL https://chromewebstore.google.com/detail/arcelik-smart-tv-browser/aibdjehbnedbkkojmjohamkloglhlonb
설명 This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible
파일 크기 589 KB
설치 횟수 9,741
현재 버전 2.3
최근 업데이트 2021-06-03
출시 날짜 2018-02-07
평점 4.27/5 총 11 개의 평점
개발자 Cagatay Sonmez
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}