Roots
Show a view of the links of a page - sorted by relevance
What is Roots?
Roots is a Chrome extension developed by benjadahl, and its main feature is "Show a view of the links of a page - sorted by relevance".
Extension Screenshots
Download Roots Extension CRX File
Download Roots extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | ammpglpaepfccjlpaecinhcdldiphpbi |
Official URL | https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi |
Description | Show a view of the links of a page - sorted by relevance |
File Size | 12.6 KB |
Installation Count | 17 |
Current Version | 1.0.0 |
Last Updated | 2016-12-30 |
Publish Date | 2016-12-30 |
Developer | benjadahl |
Payment Type | free |
Extension Website | https://github.com/Benjadahl/Roots |
Supported Languages | 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" ] } |