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".
Снимки экрана расширения
Скачать файл 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
Основная информация о расширении
Название | |
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" ] } |