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
官方網址 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'"
}