Links

Fast search for bookmarks and custom links

Linksคืออะไร?

Links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AndrewKu และคุณลักษณะหลักของมันคือ "Fast search for bookmarks and custom links"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Links

ดาวน์โหลดไฟล์ส่วนขยาย 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']   
  }
]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Links Links
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"
    ]
}