GoHyper

Annotate, highlight and interlink text selections on web pages.

GoHyper란 무엇입니까?

GoHyper은(는) go-hyper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Annotate, highlight and interlink text selections on web pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Organize your research on the web and store your collected data locally in your browser. 


Getting started

Select a text passage with your mouse, right-click on it and add the quote to GoHyper. Store complementary information and click the save button. Afterwards your text selection is highlighted and clickable. Try it out!


Why "GoHyper"?

The name "GoHyper" refers to hyperlinks. You can add one or even more hyperlinks, tags as well as a comment to your selected text passage.
While typing in the hyperlink input field you get the URLs to already stored quotes as suggestions. But you can also paste any link you want.


Storage

Your data is stored locally in your browser's IndexedDB. If you remove GoHyper your collected data is lost. 


Development 

This extension is developed at https://github.com/go-hyper/gohyper.                    

확장 프로그램 기본 정보

이름 GoHyper GoHyper
ID bemkdkdpdcepkncpclmcphgaddaameff
공식 URL https://chromewebstore.google.com/detail/gohyper/bemkdkdpdcepkncpclmcphgaddaameff
설명 Annotate, highlight and interlink text selections on web pages.
파일 크기 252 KB
설치 횟수 29
현재 버전 0.1.2
최근 업데이트 2016-05-29
출시 날짜 2016-05-29
평점 5.00/5 총 1 개의 평점
개발자 go-hyper
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GoHyper",
    "description": "Annotate, highlight and interlink text selections on web pages.",
    "version": "0.1.2",
    "homepage_url": "https:\/\/github.com\/jengeb\/gohyper",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "contextMenus",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "js\/storage.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.google.de\/_\/chrome\/newtab?*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "bower_components\/rangy\/rangy-core.min.js",
                "bower_components\/rangy\/rangy-classapplier.min.js",
                "bower_components\/rangy\/rangy-highlighter.min.js",
                "bower_components\/rangy\/rangy-serializer.min.js",
                "node_modules\/dom-position-serializer\/index.js",
                "js\/content.js"
            ],
            "exclude_globs": [
                "*.pdf"
            ]
        }
    ],
    "web_accessible_resources": [
        "iframe.html",
        "css\/content.css",
        "bower_components\/font-awesome\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-inactive-19.png",
            "38": "images\/icon-inactive-38.png"
        },
        "default_title": "GoHyper"
    }
}