Storyfinder

Graph based information and knowledge management of websites and entities.

Was ist Storyfinder?

Storyfinder ist eine Chrome-Erweiterung, die von https://uhh-lt.github.io/storyfinder entwickelt wurde, und ihr Hauptmerkmal ist "Graph based information and knowledge management of websites and entities.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Storyfinder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Storyfinder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Storyfinder is an application that includes a browser plugin and a server backend in order to identify and manage the information found in a web page. It highlights named entities and keywords in a currently visited webpage and provides an additional graph view of them. You can edit the nodes and edges, combine web page graph views and search for entities and relations.

Storyfinder keeps the information you extracted found in webpages managed and provides alternative views of data for easy access.                    

Grundlegende Informationen zur Erweiterung

Name Storyfinder Storyfinder
ID hnndfanecdfnonofigcceaahflgfpgbd
Offizielle URL https://chrome.google.com/webstore/detail/storyfinder/hnndfanecdfnonofigcceaahflgfpgbd
Beschreibung Graph based information and knowledge management of websites and entities.
Dateigröße 367 KB
Installationsanzahl 221
Aktuelle Version 0.0.13
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://uhh-lt.github.io/storyfinder
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Storyfinder",
    "short_name": "Storyfinder",
    "version": "0.0.13",
    "description": "Graph based information and knowledge management of websites and entities.",
    "icons": {
        "48": "icon-48.png",
        "500": "icon-500.png"
    },
    "browser_action": {
        "default_popup": "menu.html"
    },
    "author": "Language Technology Group - University of Hamburg",
    "background": {
        "scripts": [
            "backgroundscript.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "contentstyle.css"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "homepage_url": "https:\/\/uhh-lt.github.io\/storyfinder\/",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "",
        "contextMenus",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "popup.html"
    ]
}