view-current-source

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

Co je view-current-source?

view-current-source je rozšíření Chrome vyvinuté https://www.greinr.com, a jeho hlavní funkcí je „View the source code of a page at its current state.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření view-current-source

Stáhněte si soubory rozšíření view-current-source ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název view-current-source view-current-source
ID bloebkffnmchginelkmdcemamcdeamei
Oficiální URL https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei
Popis View the source code of a page at its current state.
Velikost souboru 16.25 KB
Počet instalací 2,106
Aktuální Verze 0.3.2
Poslední Aktualizace 2013-10-29
Datum Vydání 2013-10-29
Hodnocení 3.16/5 Celkem 25 Hodnocení
Vývojář https://www.greinr.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://www.greinr.com/projects/#!/extensions
Podporované Jazyky 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'"
}