Preloaded JSON viewer

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

O que é Preloaded JSON viewer?

Preloaded JSON viewer é uma extensão do Chrome desenvolvida por Dipak, e sua principal característica é "View all JSON information loaded in a webpage inside a script tag with type text/json".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Preloaded JSON viewer

Baixe arquivos de extensão Preloaded JSON viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

 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                    

Informações Básicas da Extensão

Nome Preloaded JSON viewer Preloaded JSON viewer
ID ljblpbnhpnnkjkeilohccngpjmjhifkj
URL Oficial https://chromewebstore.google.com/detail/preloaded-json-viewer/ljblpbnhpnnkjkeilohccngpjmjhifkj
Descrição View all JSON information loaded in a webpage inside a script tag with type text/json
Tamanho do Arquivo 47.73 KB
Contagem de Instalações 22
Versão Atual 1.2
Última Atualização 2019-05-03
Data de Publicação 2019-04-29
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Dipak
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/dipakchandranp/preloaded-json-viewer
URL da Página de Ajuda https://github.com/dipakchandranp/preloaded-json-viewer/issues
Idiomas Suportados 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
}