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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}