view-current-source

View the source code of a page at its current state.

什麼是view-current-source?

view-current-source是由https://www.greinr.com開發的Chrome擴展程式,該擴展的主要功能是“View the source code of a page at its current state.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載view-current-source擴展crx文件

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

擴展使用說明

                        This extension shows you the source code of a page as it is right when you right-click and select "view current source" in your context menu. It is especially helpful when you develop a dynamic webpage with a lot of JavaScript involved in building it.

You can search the source code with "CTRL+F" to find the code section you want to see.

Please feel free to suggest more features. Just leave a comment below or contact/follow me on twitter:
https://twitter.com/ThomasGreiner                    

擴展基本資訊

名稱 view-current-source view-current-source
ID bloebkffnmchginelkmdcemamcdeamei
官方網址 https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei
簡介 View the source code of a page at its current state.
檔案大小 16.25 KB
安裝次數 2,106
目前版本 0.3.2
更新時間 2013-10-29
上架時間 2013-10-29
評分 3.16/5 共 25 次評分
開發者 https://www.greinr.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.greinr.com/projects/#!/extensions
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "view-current-source",
    "version": "0.3.2",
    "minimum_chrome_version": "18.0",
    "description": "View the source code of a page at its current state.",
    "icons": {
        "16": "res\/logo16.png",
        "128": "res\/logo128.png"
    },
    "background": {
        "scripts": [
            "script\/background.js"
        ]
    },
    "options_page": "options.htm",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script\/script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' https:\/\/platform.twitter.com https:\/\/apis.google.com; object-src 'self'"
}