view-current-source

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

O que é view-current-source?

view-current-source é uma extensão do Chrome desenvolvida por https://www.greinr.com, e sua principal característica é "View the source code of a page at its current state.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão view-current-source

Baixe arquivos de extensão view-current-source no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome view-current-source view-current-source
ID bloebkffnmchginelkmdcemamcdeamei
URL Oficial https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei
Descrição View the source code of a page at its current state.
Tamanho do Arquivo 16.25 KB
Contagem de Instalações 2,106
Versão Atual 0.3.2
Última Atualização 2013-10-29
Data de Publicação 2013-10-29
Classificação 3.16/5 Total de 25 Avaliações
Desenvolvedor https://www.greinr.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.greinr.com/projects/#!/extensions
Idiomas Suportados 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'"
}