GoHyper

Annotate, highlight and interlink text selections on web pages.

GoHyper क्या है?

GoHyper go-hyper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Annotate, highlight and interlink text selections on web pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GoHyper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}