CubicWeb Linked Data Browser

A browser for the web of data.

O que é CubicWeb Linked Data Browser?

CubicWeb Linked Data Browser é uma extensão do Chrome desenvolvida por logilabfr, e sua principal característica é "A browser for the web of data.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CubicWeb Linked Data Browser

Baixe arquivos de extensão CubicWeb Linked Data Browser 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

                        The extension detects RDF data, whether attached to a web page, served
as-is, or available through content negotiation; and renders its through
user-defined views. A default view that renders RDF triples in a table
is included.

The extension enables the navigation in the web of data by handling the
request for RDF content and providing a user-friendly rendering of the
content that is consistent across sources. For example, the same
rendering can be applied for all RDF data about persons, regardless of
the origin of the data.                    

Informações Básicas da Extensão

Nome CubicWeb Linked Data Browser CubicWeb Linked Data Browser
ID nbhcjnnbhnmbahlofnbfekjaohgmlfcb
URL Oficial https://chrome.google.com/webstore/detail/cubicweb-linked-data-brow/nbhcjnnbhnmbahlofnbfekjaohgmlfcb
Descrição A browser for the web of data.
Tamanho do Arquivo 3.38 MB
Contagem de Instalações 117
Versão Atual 0.4.1
Última Atualização 2018-11-13
Data de Publicação 2018-11-08
Desenvolvedor logilabfr
Tipo de Pagamento free
Site da Extensão https://bitbucket.org/laurentw/logilab-cubicweb-client/
URL da Página de Ajuda https://bitbucket.org/laurentw/logilab-cubicweb-client/issues?status=new&status=open
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CubicWeb Linked Data Browser",
    "short_name": "CubicWeb LD",
    "version": "0.4.1",
    "description": "A browser for the web of data.",
    "icons": {
        "48": "icons\/app.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        "*:\/\/*\/*"
    ],
    "page_action": {
        "browser_style": true,
        "default_icon": "icons\/app.png",
        "default_title": "CubicWeb Linked Data Browser"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/main.js"
        ]
    },
    "options_ui": {
        "page": "options\/index.html",
        "browser_style": true
    },
    "sidebar_action": {
        "default_title": "CubicWeb Linked Data Browser",
        "default_panel": "sidebar\/index.html",
        "default_icon": "icons\/app.png"
    },
    "web_accessible_resources": [
        "ldviews\/*",
        "ldbrowser\/*",
        "popup\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}