Roots

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

Vad är Roots?

Roots är en Chrome-tillägg utvecklad av benjadahl, och dess huvudfunktion är "Show a view of the links of a page - sorted by relevance".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Roots-förlängningens CRX-fil

Ladda ner Roots-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Roots Roots
ID ammpglpaepfccjlpaecinhcdldiphpbi
Officiell webbadress https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi
Beskrivning Show a view of the links of a page - sorted by relevance
Filstorlek 12.6 KB
Antal Installationer 17
Aktuell Version 1.0.0
Senast Uppdaterad 2016-12-30
Publiceringsdatum 2016-12-30
Utvecklare benjadahl
Betalningssätt free
Tilläggswebbplats https://github.com/Benjadahl/Roots
Stödda Språk 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"
    ]
}