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
官方網址 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'"
}