Roots

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

Roots là gì?

Roots là một tiện ích mở rộng Chrome được phát triển bởi benjadahl, và tính năng chính của nó là "Show a view of the links of a page - sorted by relevance".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Roots

Tải xuống các tệp mở rộng Roots dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Roots Roots
ID ammpglpaepfccjlpaecinhcdldiphpbi
URL Chính Thức https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi
Mô tả Show a view of the links of a page - sorted by relevance
Kích Thước Tệp 12.6 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2016-12-30
Ngày Phát Hành 2016-12-30
Nhà Phát Triển benjadahl
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Benjadahl/Roots
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}