Roots

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

什麼是Roots?

Roots是由benjadahl開發的Chrome擴展程式,該擴展的主要功能是“Show a view of the links of a page - sorted by relevance”。

擴展截圖

screenshot
screenshot
screenshot

下載Roots擴展crx文件

下載Roots擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}