Roots
Show a view of the links of a page - sorted by relevance
Apa itu Roots?
Roots adalah ekstensi Chrome yang dikembangkan oleh benjadahl, dan fitur utamanya adalah "Show a view of the links of a page - sorted by relevance".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Roots
Unduh file ekstensi Roots dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | ammpglpaepfccjlpaecinhcdldiphpbi |
URL Resmi | https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi |
Deskripsi | Show a view of the links of a page - sorted by relevance |
Ukuran File | 12.6 KB |
Jumlah Instalasi | 17 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2016-12-30 |
Tanggal Publikasi | 2016-12-30 |
Pengembang | benjadahl |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/Benjadahl/Roots |
Bahasa yang Didukung | 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" ] } |