Skater
Spotlight-like extension for Chrome bookmarks
ما هو Skater؟
Skater هو إضافة Chrome تم تطويرها بواسطة ecalzo.developer، والميزة الرئيسية لها هي "Spotlight-like extension for Chrome bookmarks".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Skater
قم بتنزيل ملفات الامتداد Skater بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Written to help developers who love keyboard-centric workflows, Skater emulates MacOS Spotlight, but for Chrome bookmarks. Instantly search your bookmarks with Ctrl + Shift + Space or Cmd + Shift + Space. --- Skater is open source and always under construction. Checkout the GitHub page for feature requests.
معلومات أساسية عن التمديد
الاسم | Skater |
ID | goeeolknplhjegbfefjgeekeobpehekf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/skater/goeeolknplhjegbfefjgeekeobpehekf |
الوصف | Spotlight-like extension for Chrome bookmarks |
حجم الملف | 157 KB |
عدد التثبيتات | 20 |
النسخة الحالية | 1.1.8 |
آخر تحديث | 2020-12-22 |
تاريخ النشر | 2020-08-15 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | ecalzo.developer |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Ecalzo/Skater/releases/ |
عنوان صفحة المساعدة | https://github.com/Ecalzo/Skater/issues/ |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Skater", "description": "Spotlight-like extension for Chrome bookmarks", "version": "1.1.8", "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_popup": "static\/popup.html", "default_icon": "images\/icon128.png" }, "background": { "scripts": [ "static\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "static\/bundle.js" ] } ], "permissions": [ "bookmarks", "tabs" ], "commands": { "launch": { "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" }, "description": "launch Skater" } } } |