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”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| 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"
]
} | |