Links
Fast search for bookmarks and custom links
什么是Links?
Links是由AndrewKu开发的Chrome扩展程序,该扩展的主要功能是“Fast search for bookmarks and custom links”。
扩展截图
下载Links扩展crx文件
下载Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Functions:
- Search by bookmarks
- Search by custom data from your sever (json data)
- Multiple custom data source
- Hotkey control
- Favorite links
Json data example:
[
{
'id': 1,
'title': 'Google',
'url': 'https://google.com',
'tags': ['search', 'find']
},
{
'id': 2,
'title': 'Yandex',
'url': 'https://yandex.ru',
'tags': ['search', 'yandex', 'find']
},
{
'id': 3,
'title': 'Facebook',
'url': 'https://facebook.com',
'tags': ['social', 'people']
},
{
'id': 4,
'title': 'Instagram',
'url': 'https://instagram.com',
'tags': ['social', 'insta', 'photo', 'people', 'instagram']
}
] 扩展基本信息
| 名称 | |
| ID | ofdjbajcjljnhjhgikdcjjefbhofejok |
| 官方URL | https://chromewebstore.google.com/detail/links/ofdjbajcjljnhjhgikdcjjefbhofejok |
| 简介 | Fast search for bookmarks and custom links |
| 文件大小 | 555 KB |
| 安装次数 | 43 |
| 当前版本 | 2.1.0 |
| 更新时间 | 2021-11-13 |
| 上架时间 | 2020-06-15 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | AndrewKu |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Links",
"description": "Fast search for bookmarks and custom links",
"version": "2.1.0",
"author": "Andrew Kulnev",
"manifest_version": 2,
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"browser_action": {
"default_title": "Links",
"default_popup": "popup\/popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options\/options.html",
"open_in_tab": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "MacCtrl+Shift+L"
}
}
},
"permissions": [
"bookmarks",
"storage"
]
} | |