CubicWeb Linked Data Browser

A browser for the web of data.

CubicWeb Linked Data Browserとは何ですか?

CubicWeb Linked Data Browserはlogilabfrによって開発されたChromeの拡張機能で、その主な機能は「A browser for the web of data.」です。

拡張機能のスクリーンショット

screenshot

CubicWeb Linked Data Browser拡張機能のCRXファイルをダウンロード

CubicWeb Linked Data Browser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 CubicWeb Linked Data Browser CubicWeb Linked Data Browser
ID nbhcjnnbhnmbahlofnbfekjaohgmlfcb
公式URL https://chrome.google.com/webstore/detail/cubicweb-linked-data-brow/nbhcjnnbhnmbahlofnbfekjaohgmlfcb
説明 A browser for the web of data.
ファイルサイズ 3.38 MB
インストール数 117
現在のバージョン 0.4.1
最終更新日 2018-11-13
公開日 2018-11-08
開発者 logilabfr
支払い方法 free
拡張機能のウェブサイト https://bitbucket.org/laurentw/logilab-cubicweb-client/
ヘルプページのURL https://bitbucket.org/laurentw/logilab-cubicweb-client/issues?status=new&status=open
対応言語 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'"
}