Ctrl-F++

A Chrome extension for students of HTML.

Apa itu Ctrl-F++?

Ctrl-F++ adalah ekstensi Chrome yang dikembangkan oleh Marisa Chow, dan fitur utamanya adalah "A Chrome extension for students of HTML.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Ctrl-F++

Unduh file ekstensi Ctrl-F++ 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

                        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.                    

Informasi Dasar Ekstensi

Nama Ctrl-F++ Ctrl-F++
ID nejphjodhgicmobmeaekpcggihifjmlp
URL Resmi https://chrome.google.com/webstore/detail/ctrl-f++/nejphjodhgicmobmeaekpcggihifjmlp
Deskripsi A Chrome extension for students of HTML.
Ukuran File 316 KB
Jumlah Instalasi 77
Versi Saat Ini 1.1
Terakhir Diperbarui 2015-02-08
Tanggal Publikasi 2015-02-08
Penilaian 3.00/5 Total 3 Penilaian
Pengembang Marisa Chow
Tipe Pembayaran free
Situs Ekstensi https://github.com/mlchow/ctrl-f
Bahasa yang Didukung 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\/"
    ]
}