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ファイルをダウンロード

Arcelik Smart TV Browser Emulator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}