Tizen Console Fix

This extension fixes the debug console bug in Tizen Studio

什麼是Tizen Console Fix?

Tizen Console Fix是由innovations.tv開發的Chrome擴展程式,該擴展的主要功能是“This extension fixes the debug console bug in Tizen Studio”。

下載Tizen Console Fix擴展crx文件

下載Tizen Console Fix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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]                    

擴展基本資訊

名稱 Tizen Console Fix Tizen Console Fix
ID hfpknnioheddhjmjhchindnmcoadmekl
官方網址 https://chrome.google.com/webstore/detail/tizen-console-fix/hfpknnioheddhjmjhchindnmcoadmekl
簡介 This extension fixes the debug console bug in Tizen Studio
檔案大小 6.92 KB
安裝次數 194
目前版本 1.0
更新時間 2017-07-24
上架時間 2017-07-24
評分 5.00/5 共 3 次評分
開發者 innovations.tv
付費類型 free
支援的語言 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"
    }
}