Tizen Console Fix

This extension fixes the debug console bug in Tizen Studio

Vad är Tizen Console Fix?

Tizen Console Fix är en Chrome-tillägg utvecklad av innovations.tv, och dess huvudfunktion är "This extension fixes the debug console bug in Tizen Studio".

Ladda ner Tizen Console Fix-förlängningens CRX-fil

Ladda ner Tizen Console Fix-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Install this chrome extension to fix the debugger console in Tizen studio.

If this helps, please send me an email to say Thanks at [email protected]                    

Grundläggande Information om Tillägg

Namn Tizen Console Fix Tizen Console Fix
ID hfpknnioheddhjmjhchindnmcoadmekl
Officiell webbadress https://chrome.google.com/webstore/detail/tizen-console-fix/hfpknnioheddhjmjhchindnmcoadmekl
Beskrivning This extension fixes the debug console bug in Tizen Studio
Filstorlek 6.92 KB
Antal Installationer 194
Aktuell Version 1.0
Senast Uppdaterad 2017-07-24
Publiceringsdatum 2017-07-24
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare innovations.tv
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tizen Console Fix",
    "description": "This extension fixes the debug console bug in Tizen Studio",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*",
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}