Roots

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

Rootsคืออะไร?

Roots เป็นส่วนขยายของ Chrome ที่พัฒนาโดย benjadahl และคุณลักษณะหลักของมันคือ "Show a view of the links of a page - sorted by relevance"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Roots

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}