Web Essentials

Interacts with Visual Studio's Browser Link feature

什么是Web Essentials?

Web Essentials是由Mads Kristensen开发的Chrome扩展程序,该扩展的主要功能是“Interacts with Visual Studio's Browser Link feature”。

扩展截图

screenshot

下载Web Essentials扩展crx文件

下载Web Essentials扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 Web Essentials Web Essentials
ID mghdcdlpcdiodelbplncnodiiadljhhk
官方URL https://chromewebstore.google.com/detail/web-essentials/mghdcdlpcdiodelbplncnodiiadljhhk
简介 Interacts with Visual Studio's Browser Link feature
文件大小 14.67 KB
安装次数 2,882
当前版本 1.1
更新时间 2017-06-14
上架时间 2017-06-14
评分 2.23/5 共13次评分
开发者 Mads Kristensen
付费类型 free
扩展官网 https://github.com/madskristensen/WebEssentialsChrome
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Essentials",
    "description": "Interacts with Visual Studio's Browser Link feature",
    "author": "Mads Kristensen",
    "version": "1.1",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "img\/vs16.png",
            "20": "img\/vs24.png",
            "24": "img\/vs24.png",
            "32": "img\/vs32.png"
        },
        "default_title": "Web Essentials",
        "default_popup": "popup.htm"
    },
    "web_accessible_resources": [
        "page.js"
    ],
    "offline_enabled": true,
    "permissions": [
        ""
    ]
}