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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cagatay Sonmez, και η κύρια λειτουργία του είναι "This extension injects Arcelik Smart TV APIs to your web page and simulates TV environment as much as possible".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Arcelik Smart TV Browser Emulator

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο cagatay.sonmez@arcelik.com
Τύπος Πληρωμής 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"
    ]
}