Quick source viewer

View current page sources: HTML + Javascript + CSS

Что такое Quick source viewer?

Quick source viewer - это расширение Chrome, разработанное Tomi Mickelsson, и его основная функция - "View current page sources: HTML + Javascript + CSS".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Quick source viewer

Скачайте файлы расширений Quick source viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Displays HTML, Javascript and CSS sources of a page in a fast and compact way.

Source code is syntax colorized and beautified for easy reading.

Badge in the toolbar shows Javascript node counts.

File size and cache header is displayed.

Display onclick handlers with inline javascript.

Look and feel can be modified with custom CSS.

Copy to clipboard. Line numbers.

Selected urls can be hilighted in the list of source files.

Open source - https://github.com/tomimick/chrome-ext-view-src

Blog - http://tomicloud.com/2012/07/viewsrc-chrome-ext                    

Основная информация о расширении

Название Quick source viewer Quick source viewer
ID cfmcghennfbpmhemnnfjhkdmnbidpanb
Официальный URL https://chromewebstore.google.com/detail/quick-source-viewer/cfmcghennfbpmhemnnfjhkdmnbidpanb
Описание View current page sources: HTML + Javascript + CSS
Размер файла 74.21 KB
Количество установок 32,447
Текущая Версия 1.4.0
Последнее Обновление 2021-06-05
Дата публикации 2019-05-23
Рейтинг 3.65/5 Всего 112 оценок
Разработчик Tomi Mickelsson
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://tomicloud.com
URL страницы помощи https://tomicloud.com/2012/07/viewsrc-chrome-ext
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick source viewer",
    "short_name": "source view",
    "version": "1.4.0",
    "description": "View current page sources: HTML + Javascript + CSS",
    "permissions": [
        ""
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "gear19.png"
    },
    "icons": {
        "16": "gear19.png",
        "128": "gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "config.js",
            "bg.js"
        ]
    },
    "minimum_chrome_version": "26"
}