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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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