Ctrl-F++

A Chrome extension for students of HTML.

O que é Ctrl-F++?

Ctrl-F++ é uma extensão do Chrome desenvolvida por Marisa Chow, e sua principal característica é "A Chrome extension for students of HTML.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Ctrl-F++

Baixe arquivos de extensão Ctrl-F++ 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

                        Ctrl-F++ is an educational Chrome extension aimed to aid students of HTML. 

Our mission is to move users beyond a place of head knowledge into a familiarity with web development. Ctrl-F++, borrowing from its namesake,  searches your current web page's source code for any specified HTML tags and highlights the relevant portions of the web page. It also counts the number of instances that tag appears and links to more info about that HTML tag. 

Find your tags in the wild. Explore. Discover. Engage.                    

Informações Básicas da Extensão

Nome Ctrl-F++ Ctrl-F++
ID nejphjodhgicmobmeaekpcggihifjmlp
URL Oficial https://chrome.google.com/webstore/detail/ctrl-f++/nejphjodhgicmobmeaekpcggihifjmlp
Descrição A Chrome extension for students of HTML.
Tamanho do Arquivo 316 KB
Contagem de Instalações 77
Versão Atual 1.1
Última Atualização 2015-02-08
Data de Publicação 2015-02-08
Classificação 3.00/5 Total de 3 Avaliações
Desenvolvedor Marisa Chow
Tipo de Pagamento free
Site da Extensão https://github.com/mlchow/ctrl-f
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ctrl-F++",
    "description": "A Chrome extension for students of HTML.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "spyglass.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "24": "spyglass.png",
        "48": "spyglass.png",
        "128": "spyglass.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}