Ctrl-F++

A Chrome extension for students of HTML.

Что такое Ctrl-F++?

Ctrl-F++ - это расширение Chrome, разработанное Marisa Chow, и его основная функция - "A Chrome extension for students of HTML.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Ctrl-F++

Скачайте файлы расширений 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\/"
    ]
}