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…

什么是Web Navigation Window?

Web Navigation Window是由Victor Charpenay开发的Chrome扩展程序,该扩展的主要功能是“This browser extension reads the browsing history over a given period and renders it as a navigation graph (nodes are visited pages…”。

扩展截图

screenshot

下载Web Navigation Window扩展crx文件

下载Web Navigation Window扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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").                    

扩展基本信息

名称 Web Navigation Window Web Navigation Window
ID odhefgodhimcfacbdilbohcekkgbnhmh
官方URL https://chromewebstore.google.com/detail/web-navigation-window/odhefgodhimcfacbdilbohcekkgbnhmh
简介 This browser extension reads the browsing history over a given period and renders it as a navigation graph (nodes are visited pages…
文件大小 200 KB
安装次数 48
当前版本 0.3
更新时间 2021-06-01
上架时间 2021-05-13
评分 5.00/5 共1次评分
开发者 Victor Charpenay
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/vcharpenay/web-nav-window/
支持的语言 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"
        ]
    }
}