Roots

Show a view of the links of a page - sorted by relevance

Co to jest Roots?

Roots to rozszerzenie Chrome opracowane przez benjadahl, a jego główną funkcją jest „Show a view of the links of a page - sorted by relevance”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Roots

Pobierz pliki rozszerzeń Roots w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Roots Roots
ID ammpglpaepfccjlpaecinhcdldiphpbi
Oficjalny URL https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi
Opis Show a view of the links of a page - sorted by relevance
Rozmiar pliku 12.6 KB
Liczba instalacji 17
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2016-12-30
Data Publikacji 2016-12-30
Deweloper benjadahl
Typ Płatności free
Strona Rozszerzenia https://github.com/Benjadahl/Roots
Obsługiwane Języki 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"
    ]
}