Ctrl-F++

A Chrome extension for students of HTML.

什么是Ctrl-F++?

Ctrl-F++是由Marisa Chow开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension for students of HTML.”。

扩展截图

screenshot
screenshot
screenshot

下载Ctrl-F++扩展crx文件

下载Ctrl-F++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Ctrl-F++ Ctrl-F++
ID nejphjodhgicmobmeaekpcggihifjmlp
官方URL https://chrome.google.com/webstore/detail/ctrl-f++/nejphjodhgicmobmeaekpcggihifjmlp
简介 A Chrome extension for students of HTML.
文件大小 316 KB
安装次数 77
当前版本 1.1
更新时间 2015-02-08
上架时间 2015-02-08
评分 3.00/5 共3次评分
开发者 Marisa Chow
付费类型 free
扩展官网 https://github.com/mlchow/ctrl-f
支持的语言 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\/"
    ]
}