Roots
Show a view of the links of a page - sorted by relevance
O que é Roots?
Roots é uma extensão do Chrome desenvolvida por benjadahl, e sua principal característica é "Show a view of the links of a page - sorted by relevance".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Roots
Baixe arquivos de extensão Roots no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | ammpglpaepfccjlpaecinhcdldiphpbi |
URL Oficial | https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi |
Descrição | Show a view of the links of a page - sorted by relevance |
Tamanho do Arquivo | 12.6 KB |
Contagem de Instalações | 17 |
Versão Atual | 1.0.0 |
Última Atualização | 2016-12-30 |
Data de Publicação | 2016-12-30 |
Desenvolvedor | benjadahl |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Benjadahl/Roots |
Idiomas Suportados | 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" ] } |