Storyfinder

Graph based information and knowledge management of websites and entities.

Что такое Storyfinder?

Storyfinder - это расширение Chrome, разработанное https://uhh-lt.github.io/storyfinder, и его основная функция - "Graph based information and knowledge management of websites and entities.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Storyfinder

Скачайте файлы расширений Storyfinder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Storyfinder Storyfinder
ID hnndfanecdfnonofigcceaahflgfpgbd
Официальный URL https://chrome.google.com/webstore/detail/storyfinder/hnndfanecdfnonofigcceaahflgfpgbd
Описание Graph based information and knowledge management of websites and entities.
Размер файла 367 KB
Количество установок 221
Текущая Версия 0.0.13
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://uhh-lt.github.io/storyfinder
Тип оплаты free
Поддерживаемые языки 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"
    ]
}