Roots

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

Co je Roots?

Roots je rozšíření Chrome vyvinuté benjadahl, a jeho hlavní funkcí je „Show a view of the links of a page - sorted by relevance“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Roots

Stáhněte si soubory rozšíření Roots ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Roots Roots
ID ammpglpaepfccjlpaecinhcdldiphpbi
Oficiální URL https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi
Popis Show a view of the links of a page - sorted by relevance
Velikost souboru 12.6 KB
Počet instalací 17
Aktuální Verze 1.0.0
Poslední Aktualizace 2016-12-30
Datum Vydání 2016-12-30
Vývojář benjadahl
Typ Platby free
Webové stránky Rozšíření https://github.com/Benjadahl/Roots
Podporované Jazyky 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"
    ]
}