Links

Fast search for bookmarks and custom links

Qu'est-ce que Links ?

Links est une extension Chrome développée par AndrewKu, et sa fonction principale est "Fast search for bookmarks and custom links".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Links

Téléchargez les fichiers d'extension Links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Links Links
ID ofdjbajcjljnhjhgikdcjjefbhofejok
URL Officiel https://chromewebstore.google.com/detail/links/ofdjbajcjljnhjhgikdcjjefbhofejok
Description Fast search for bookmarks and custom links
Taille du Fichier 555 KB
Nombre d'Installations 43
Version Actuelle 2.1.0
Dernière Mise à Jour 2021-11-13
Date de Publication 2020-06-15
Évaluation 5.00/5 Total 5 Évaluations
Développeur AndrewKu
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}