Ctrl-F++

A Chrome extension for students of HTML.

Ctrl-F++ là gì?

Ctrl-F++ là một tiện ích mở rộng Chrome được phát triển bởi Marisa Chow, và tính năng chính của nó là "A Chrome extension for students of HTML.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ctrl-F++

Tải xuống các tệp mở rộng Ctrl-F++ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ctrl-F++ Ctrl-F++
ID nejphjodhgicmobmeaekpcggihifjmlp
URL Chính Thức https://chrome.google.com/webstore/detail/ctrl-f++/nejphjodhgicmobmeaekpcggihifjmlp
Mô tả A Chrome extension for students of HTML.
Kích Thước Tệp 316 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-02-08
Ngày Phát Hành 2015-02-08
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Marisa Chow
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mlchow/ctrl-f
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}