Recursive
Explore the endless web!
什麼是Recursive?
Recursive是由mike.cann開發的Chrome擴展程式,該擴展的主要功能是“Explore the endless web!”。
擴展截圖
下載Recursive擴展crx文件
下載Recursive擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Recursive is an experimental tool for visualising the world wide web. Given a URL it downloads the page, searches for links, then recursively downloads each one of those. The information is then displayed in a node-based graph. Version History: ----- v.1.3 - 10/12/2015 ------ - fixed broken zip file ----- v.1.2 - 10/12/2015 ------ - modernized it so it now builds via gulp - works again in chrome ----- v.1.1 ------ - Now only displays recursive icon on tabs with http:// and https:// - Full screen now works (uncommented that line of code, doh!) - Pause and reseting a recurse now works correctly - Renamed the title page of the app - Some Performance improvments - There is now an option in the settings to define a custom file filter - There is now a setting to disable removing duplicate files
擴展基本資訊
名稱 | Recursive |
ID | hbgbcmcmpiiciafmolmoapfgegbhbmcc |
官方網址 | https://chromewebstore.google.com/detail/recursive/hbgbcmcmpiiciafmolmoapfgegbhbmcc |
簡介 | Explore the endless web! |
檔案大小 | 1.04 MB |
安裝次數 | 615 |
目前版本 | 1.3 |
更新時間 | 2016-01-05 |
上架時間 | 2016-01-04 |
評分 | 3.42/5 共 12 次評分 |
開發者 | mike.cann |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Recursive", "manifest_version": 2, "description": "Explore the endless web!", "version": "1.3", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "storage" ], "options_page": "app.htm", "page_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon48.png" }, "default_title": "Recursive" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "web_accessible_resources": [] } |