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
公式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"
    ]
}