Recursive

Explore the endless web!

¿Qué es Recursive?

Recursive es una extensión de Chrome desarrollada por mike.cann, y su función principal es "Explore the endless web!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Recursive

Descarga archivos de extensión Recursive en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Recursive Recursive
ID hbgbcmcmpiiciafmolmoapfgegbhbmcc
URL Oficial https://chromewebstore.google.com/detail/recursive/hbgbcmcmpiiciafmolmoapfgegbhbmcc
Descripción Explore the endless web!
Tamaño del Archivo 1.04 MB
Cantidad de Instalaciones 615
Versión Actual 1.3
Última Actualización 2016-01-05
Fecha de Publicación 2016-01-04
Calificación 3.42/5 Total de 12 Calificaciones
Desarrollador mike.cann
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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": []
}