view-current-source

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

Apa itu view-current-source?

view-current-source adalah ekstensi Chrome yang dikembangkan oleh https://www.greinr.com, dan fitur utamanya adalah "View the source code of a page at its current state.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi view-current-source

Unduh file ekstensi view-current-source dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama view-current-source view-current-source
ID bloebkffnmchginelkmdcemamcdeamei
URL Resmi https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei
Deskripsi View the source code of a page at its current state.
Ukuran File 16.25 KB
Jumlah Instalasi 2,106
Versi Saat Ini 0.3.2
Terakhir Diperbarui 2013-10-29
Tanggal Publikasi 2013-10-29
Penilaian 3.16/5 Total 25 Penilaian
Pengembang https://www.greinr.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.greinr.com/projects/#!/extensions
Bahasa yang Didukung 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'"
}