Roots
Show a view of the links of a page - sorted by relevance
Cos'è Roots?
Roots è un'estensione di Chrome sviluppata da benjadahl, e la sua funzione principale è "Show a view of the links of a page - sorted by relevance".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Roots
Scarica i file di estensione Roots in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | ammpglpaepfccjlpaecinhcdldiphpbi |
| URL Ufficiale | https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi |
| Descrizione | Show a view of the links of a page - sorted by relevance |
| Dimensione del File | 12.6 KB |
| Conteggio Installazioni | 17 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2016-12-30 |
| Data di Pubblicazione | 2016-12-30 |
| Sviluppatore | benjadahl |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Benjadahl/Roots |
| Lingue Supportate | 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"
]
} | |