Roots
Show a view of the links of a page - sorted by relevance
Qu'est-ce que Roots ?
Roots est une extension Chrome développée par benjadahl, et sa fonction principale est "Show a view of the links of a page - sorted by relevance".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Roots
Téléchargez les fichiers d'extension Roots au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Roots is a Chrome extension that will show all of the links on the current page, and sort them in a list by relevance. This can make your browsing more effecient on pages you do not already know. Roots is free/open source software released under the GPL-v3 license. The source code can be found here: https://github.com/Benjadahl/Roots
Informations de Base sur l'Extension
Nom | |
ID | ammpglpaepfccjlpaecinhcdldiphpbi |
URL Officiel | https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi |
Description | Show a view of the links of a page - sorted by relevance |
Taille du Fichier | 12.6 KB |
Nombre d'Installations | 17 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2016-12-30 |
Date de Publication | 2016-12-30 |
Développeur | benjadahl |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Benjadahl/Roots |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Roots", "description": "Show a view of the links of a page - sorted by relevance", "version": "1.0.0", "options_ui": { "page": "options\/options.html", "chrome_style": true }, "browser_action": { "default_icon": "resources\/icon.png", "default_popup": "popup\/popup.html" }, "icons": { "128": "resources\/icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "resources\/domain.js", "pull.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab", "tabs", "storage" ] } |