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
官方網址 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\/"
    ]
}