Roots
Show a view of the links of a page - sorted by relevance
Wat is Roots?
Roots is een Chrome-extensie ontwikkeld door benjadahl, en de belangrijkste functie is "Show a view of the links of a page - sorted by relevance".
Extensie Screenshots
Download het CRX-bestand van de extensie Roots
Download Roots-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | ammpglpaepfccjlpaecinhcdldiphpbi |
Officiële URL | https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi |
Beschrijving | Show a view of the links of a page - sorted by relevance |
Bestandsgrootte | 12.6 KB |
Aantal Installaties | 17 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2016-12-30 |
Publicatiedatum | 2016-12-30 |
Ontwikkelaar | benjadahl |
Betalingswijze | free |
Extensiewebsite | https://github.com/Benjadahl/Roots |
Ondersteunde Talen | 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" ] } |