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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Victor Charpenay และคุณลักษณะหลักของมันคือ "This browser extension reads the browsing history over a given period and renders it as a navigation graph (nodes are visited pages…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Navigation Window
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } } |