Links

Fast search for bookmarks and custom links

Links là gì?

Links là một tiện ích mở rộng Chrome được phát triển bởi AndrewKu, và tính năng chính của nó là "Fast search for bookmarks and custom links".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Links

Tải xuống các tệp mở rộng Links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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']   
  }
]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Links Links
ID ofdjbajcjljnhjhgikdcjjefbhofejok
URL Chính Thức https://chromewebstore.google.com/detail/links/ofdjbajcjljnhjhgikdcjjefbhofejok
Mô tả Fast search for bookmarks and custom links
Kích Thước Tệp 555 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2021-11-13
Ngày Phát Hành 2020-06-15
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển AndrewKu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}