Browsing Graph
View your browsing history in a graph
Browsing Graph란 무엇입니까?
Browsing Graph은(는) http://bgraph.herokuapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View your browsing history in a graph"입니다.
확장 프로그램 스크린샷
Browsing Graph 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
How many time do you feel disappointed for not remembering links you have visited while researching about something on the internet. This is particularly annoying when you want to remember some useful links for the future reference. Bookmark might help but mere list of links you visited in the past does not give you any helpful information. Browsing Graph solves this problem. When you set it to capture a concept, it saves all the links you visit and builds a graph based on your browsing history since you initialised the concept. Using this graph, you can see how the links are related in a certain topic. It lets you capture knowledge and organise them without any effort. More importantly, capturing browsing history and building a graph happen entirely in client side - in your browser. Only when you save it in the cloud, it stores data in server side.
확장 프로그램 기본 정보
이름 | |
ID | mablbgnomenhcddjdmecpkppllklolch |
공식 URL | https://chrome.google.com/webstore/detail/browsing-graph/mablbgnomenhcddjdmecpkppllklolch |
설명 | View your browsing history in a graph |
파일 크기 | 437 KB |
설치 횟수 | 172 |
현재 버전 | 0.0.5.3 |
최근 업데이트 | 2016-08-20 |
출시 날짜 | 2016-08-20 |
평점 | 3.33/5 총 3 개의 평점 |
개발자 | http://bgraph.herokuapp.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Ye Myat Thein", "manifest_version": 2, "name": "Browsing Graph", "short_name": "Browsing Graph", "description": "View your browsing history in a graph", "version": "0.0.5.3", "background": { "scripts": [ "ext_scripts\/common.js", "ext_scripts\/event_helper.js", "ext_scripts\/event.js" ], "persistent": false }, "icons": { "16": "res\/icon_16.png", "48": "res\/icon_48.png", "128": "res\/icon_128.png" }, "browser_action": { "default_popup": "pages\/popup.html" }, "permissions": [ "webNavigation", "history", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "ext_scripts\/common.js", "ext_scripts\/content.js" ], "run_at": "document_end" } ] } |