Preloaded JSON viewer

View all JSON information loaded in a webpage inside a script tag with type text/json

Что такое Preloaded JSON viewer?

Preloaded JSON viewer - это расширение Chrome, разработанное Dipak, и его основная функция - "View all JSON information loaded in a webpage inside a script tag with type text/json".

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

screenshot

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

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

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

 Web site is client-side rendered using React. We normally load data over HTTPS using our syncer architecture, but to avoid the extra roundtrip for the first screen that’s displayed, we embed it into the initial HTML response. Once the server has loaded the data that the client will need¹, it outputs it using a simple 

This chrome plugin will help to see the data loaded into page like this, to help ease debugging while development and testing                    

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

Название Preloaded JSON viewer Preloaded JSON viewer
ID ljblpbnhpnnkjkeilohccngpjmjhifkj
Официальный URL https://chromewebstore.google.com/detail/preloaded-json-viewer/ljblpbnhpnnkjkeilohccngpjmjhifkj
Описание View all JSON information loaded in a webpage inside a script tag with type text/json
Размер файла 47.73 KB
Количество установок 22
Текущая Версия 1.2
Последнее Обновление 2019-05-03
Дата публикации 2019-04-29
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Dipak
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/dipakchandranp/preloaded-json-viewer
URL страницы помощи https://github.com/dipakchandranp/preloaded-json-viewer/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Preloaded JSON viewer",
    "version": "1.2",
    "description": "View all JSON information loaded in a webpage inside a script tag with type text\/json",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "JSON viewer",
        "default_icons": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/64.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/64.png",
        "128": "images\/128.png"
    },
    "manifest_version": 2
}