Roots

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

Roots क्या है?

Roots benjadahl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show a view of the links of a page - sorted by relevance"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Roots एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Roots Roots
ID ammpglpaepfccjlpaecinhcdldiphpbi
आधिकारिक URL https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi
विवरण Show a view of the links of a page - sorted by relevance
फ़ाइल का आकार 12.6 KB
स्थापना संख्या 17
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2016-12-30
प्रकाशन तिथि 2016-12-30
डेवलपर benjadahl
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Benjadahl/Roots
समर्थित भाषाएँ 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"
    ]
}