Ctrl-F++

A Chrome extension for students of HTML.

Wat is Ctrl-F++?

Ctrl-F++ is een Chrome-extensie ontwikkeld door Marisa Chow, en de belangrijkste functie is "A Chrome extension for students of HTML.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Ctrl-F++

Download Ctrl-F++-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Ctrl-F++ Ctrl-F++
ID nejphjodhgicmobmeaekpcggihifjmlp
Officiële URL https://chrome.google.com/webstore/detail/ctrl-f++/nejphjodhgicmobmeaekpcggihifjmlp
Beschrijving A Chrome extension for students of HTML.
Bestandsgrootte 316 KB
Aantal Installaties 77
Huidige Versie 1.1
Laatst Bijgewerkt 2015-02-08
Publicatiedatum 2015-02-08
Beoordeling 3.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Marisa Chow
Betalingswijze free
Extensiewebsite https://github.com/mlchow/ctrl-f
Ondersteunde Talen 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\/"
    ]
}