Semantic Spider

Chrome becomes more intelligent and personalized with W3C Semantic Web

Semantic Spider란 무엇입니까?

Semantic Spider은(는) https://www.w3.org/2013/04/semweb-html5에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome becomes more intelligent and personalized with W3C Semantic Web"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Semantic Spider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension enables Google Chrome to be ready for 'Semantic Web Technology' and become more intelligent and personalized based on your daily browsing.

Detail architecture and use cases are described here.
https://www.w3.org/2013/04/semweb-html5/spider/

In International Semantic Web Conference 2014 (ISWC2014), the paper was nominated as one of best papers.
https://github.com/shishimaru/triplestoreJS/blob/master/paper_ISWC2014.pdf

Any web contents annotated with W3C Semantic Web technologies in web sites can be stored into your Chrome automatically and your Chrome works with your stored personal web contents.
If your stored web contents have something relationship with each other, then they starts to be inter-linked automatically and organize item groups in your Chrome.
After the status, when you visit web sites and the sites have any relationships with your personal stored contents (private schedules and contacts and SNS friends' postings, favorite articles, products ...), then they are suggested and you can discover relationships and knowledge you didn't realize so far.

Besides, when you input keyword into search field on Google+, Bing, Amazon, Yahoo ... , this extension suggests personalized keywords based on your personal stored semantic data. 

Please note that your any storing actions and stored personal contents are 'NOT' transferred to external servers.

You can get started with SemWeb-ready sites like below:
* Retail Store
 - http://www.bestbuy.com/
 - http://oreilly.com/
 - http://store.apple.com/
* News Site
 - http://www.cnn.com/
 - http://yahoo.com/
* SNS
 - http://www.facebook.com/
 - https://plus.google.com/

Finally, this is one of sample programs of triplestoreJS library (https://github.com/shishimaru/triplestoreJS) which enables web applications to store Semantic Web information into web browsers through HTML5 WebStorage. This extension will be improved and new functionality will be added in further version.

Hitoshi Uchida                     

확장 프로그램 기본 정보

이름 Semantic Spider Semantic Spider
ID ckdnmkbanbampnifpddcfdphonmfibkb
공식 URL https://chromewebstore.google.com/detail/semantic-spider/ckdnmkbanbampnifpddcfdphonmfibkb
설명 Chrome becomes more intelligent and personalized with W3C Semantic Web
파일 크기 596 KB
설치 횟수 474
현재 버전 0.32
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 4.00/5 총 3 개의 평점
개발자 https://www.w3.org/2013/04/semweb-html5
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.w3.org/2013/04/semweb-html5/spider/
도움말 페이지 URL https://www.w3.org/2013/04/semweb-html5/spider/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Semantic Spider",
    "version": "0.32",
    "manifest_version": 2,
    "description": "Chrome becomes more intelligent and personalized with W3C Semantic Web",
    "icons": {
        "128": "images\/spider-128.png",
        "16": "images\/spider.png"
    },
    "offline_enabled": true,
    "permissions": [
        "tabs",
        "webRequest",
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "idle",
        "identity",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "oauth2": {
        "client_id_DEBUG": "152513331772-vrseqb2d25bc56t4bg5bnpv365q6san9.apps.googleusercontent.com",
        "client_id": "152513331772-m04ubjt3l4i9ikkpj976db5mh37lh74b.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/plus.login",
            "https:\/\/www.googleapis.com\/auth\/calendar.readonly",
            "https:\/\/picasaweb.google.com\/data\/"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/js1.nend.net\/js\/; object-src 'self'",
    "omnibox": {
        "keyword": "spider"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "green-turtle\/RDFa.0.21.0.js",
                "green-turtle\/RDFaProcessor.0.21.0.js",
                "microdataJS\/jquery.microdata.js",
                "microdataJS\/jquery.microdata.json.js",
                "ccv.js",
                "face.js",
                "img.js",
                "manager.js",
                "viewer.js",
                "content.js"
            ],
            "css": [
                "content.css",
                "suggest.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "jquery-1.10.2.min.map",
        "\/images\/*"
    ],
    "background": {
        "scripts": [
            "jquery-1.10.2.min.js",
            "frecog_const.js",
            "frecog.js",
            "options.js",
            "ml.js",
            "ccv.js",
            "face.js",
            "img.js",
            "background.js",
            "triplestore.js",
            "manager.js",
            "viewer.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/spider.png",
        "default_popup": "popup.html",
        "default_title": "Semantic Spider"
    }
}