Web Navigation Window

This browser extension reads the browsing history over a given period and renders it as a navigation graph (nodes are visited pages…

Co je Web Navigation Window?

Web Navigation Window je rozšíření Chrome vyvinuté Victor Charpenay, a jeho hlavní funkcí je „This browser extension reads the browsing history over a given period and renders it as a navigation graph (nodes are visited pages…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Web Navigation Window

Stáhněte si soubory rozšíření Web Navigation Window ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This browser extension reads the browsing history over a given period and renders it as a navigation graph (nodes are visited pages aggregated by domain name, edges are link traversals or form submissions from one page to another).

This extension is also part of a research project on hypermedia systems, whose objective is to collect (anonymized) navigation data. This navigation data will then be analyzed to compare human browsing behaviors with the behavior of autonoumous Web agents ("bots").                    

Základní Informace o Rozšíření

Název Web Navigation Window Web Navigation Window
ID odhefgodhimcfacbdilbohcekkgbnhmh
Oficiální URL https://chromewebstore.google.com/detail/web-navigation-window/odhefgodhimcfacbdilbohcekkgbnhmh
Popis This browser extension reads the browsing history over a given period and renders it as a navigation graph (nodes are visited pages…
Velikost souboru 200 KB
Počet instalací 48
Aktuální Verze 0.3
Poslední Aktualizace 2021-06-01
Datum Vydání 2021-05-13
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Victor Charpenay
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/vcharpenay/web-nav-window/
Podporované Jazyky en-US,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.3",
    "default_locale": "en_US",
    "name": "__MSG_extension_name__",
    "browser_action": {
        "default_title": "__MSG_extension_name__",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "64": "icon-64.png"
        }
    },
    "permissions": [
        "history"
    ],
    "web_accessible_resources": [
        "ui.html",
        "util.js",
        "navigation.js",
        "network.js",
        "lib\/vis-network.min.js",
        "lib\/uri.all.min.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}