CubicWeb Linked Data Browser

A browser for the web of data.

Qu'est-ce que CubicWeb Linked Data Browser ?

CubicWeb Linked Data Browser est une extension Chrome développée par logilabfr, et sa fonction principale est "A browser for the web of data.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension CubicWeb Linked Data Browser

Téléchargez les fichiers d'extension CubicWeb Linked Data Browser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom CubicWeb Linked Data Browser CubicWeb Linked Data Browser
ID nbhcjnnbhnmbahlofnbfekjaohgmlfcb
URL Officiel https://chrome.google.com/webstore/detail/cubicweb-linked-data-brow/nbhcjnnbhnmbahlofnbfekjaohgmlfcb
Description A browser for the web of data.
Taille du Fichier 3.38 MB
Nombre d'Installations 117
Version Actuelle 0.4.1
Dernière Mise à Jour 2018-11-13
Date de Publication 2018-11-08
Développeur logilabfr
Type de Paiement free
Site Web de l'Extension https://bitbucket.org/laurentw/logilab-cubicweb-client/
URL de la Page d'Aide https://bitbucket.org/laurentw/logilab-cubicweb-client/issues?status=new&status=open
Langues Prises en Charge 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'"
}