View source code of online HTML, CSS & JavaScript files

什么是

是由nire0510开发的Chrome扩展程序,该扩展的主要功能是“View source code of online HTML, CSS & JavaScript files”。

扩展截图

screenshot
screenshot
screenshot

下载扩展crx文件

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

扩展使用说明

                        View source code of online HTML, CSS & JavaScript files.
The extension automatically downloads the source locally and opens the file in a rich code editor with syntax highlighting support, text search, code collapse and more.
If input is in the following format: protocol://domain/file_path:row:column it will automatically set the cursor in that position, a productivity booster when it comes to debugging.                    

扩展基本信息

名称 <view-source>
ID dmfgkkcgfcaciolbfagclhaainpigkmd
官方URL https://chromewebstore.google.com/detail/%3Cview-source%3E/dmfgkkcgfcaciolbfagclhaainpigkmd
简介 View source code of online HTML, CSS & JavaScript files
文件大小 60.13 KB
安装次数 10,000
当前版本 1.1.0
更新时间 2017-06-27
上架时间 2017-06-27
评分 3.33/5 共6次评分
开发者 nire0510
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "",
    "version": "1.1.0",
    "description": "View source code of online HTML, CSS & JavaScript files",
    "icons": {
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "notifications"
    ],
    "browser_action": {
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "24": "assets\/icons\/icon-24.png",
            "32": "assets\/icons\/icon-32.png"
        },
        "default_title": "",
        "default_popup": "app\/popup\/index.html"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "app\/options\/index.html"
    },
    "background": {
        "scripts": [
            "app\/scripts\/event.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com\/ https:\/\/cdnjs.cloudflare.com\/; object-src 'self'"
}