Recursive
Explore the endless web!
Τι είναι το Recursive;
Το Recursive είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mike.cann, και η κύρια λειτουργία του είναι "Explore the endless web!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Recursive
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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": [] } |