view-current-source

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

view-current-source là gì?

view-current-source là một tiện ích mở rộng Chrome được phát triển bởi https://www.greinr.com, và tính năng chính của nó là "View the source code of a page at its current state.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng view-current-source

Tải xuống các tệp mở rộng view-current-source dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên view-current-source view-current-source
ID bloebkffnmchginelkmdcemamcdeamei
URL Chính Thức https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei
Mô tả View the source code of a page at its current state.
Kích Thước Tệp 16.25 KB
Số Lần Cài Đặt 2,106
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2013-10-29
Ngày Phát Hành 2013-10-29
Đánh Giá 3.16/5 Tổng số 25 Đánh Giá
Nhà Phát Triển https://www.greinr.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.greinr.com/projects/#!/extensions
Ngôn Ngữ Được Hỗ Trợ 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'"
}