Linkinize - Bookmark Manager for Teams
Bookmark Manager for Teams
ما هو Linkinize - Bookmark Manager for Teams؟
Linkinize - Bookmark Manager for Teams هو إضافة Chrome تم تطويرها بواسطة Linkinize، والميزة الرئيسية لها هي "Bookmark Manager for Teams".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Linkinize - Bookmark Manager for Teams
قم بتنزيل ملفات الامتداد Linkinize - Bookmark Manager for Teams بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Linkinize is a powerful bookmark management extension designed specifically for teams and businesses. With Linkinize, teams can easily share links and collaborate on projects, saving time and increasing productivity.
معلومات أساسية عن التمديد
الاسم | Linkinize - Bookmark Manager for Teams |
ID | ecihffhadpoocggaefliinhjbjgekdnh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/linkinize-bookmark-manage/ecihffhadpoocggaefliinhjbjgekdnh |
الوصف | Bookmark Manager for Teams |
حجم الملف | 3.64 MB |
عدد التثبيتات | 92 |
النسخة الحالية | 0.5.0 |
آخر تحديث | 2024-03-01 |
تاريخ النشر | 2023-04-17 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Linkinize |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://linkinize.com |
عنوان صفحة المساعدة | https://linkinize.com |
عنوان صفحة سياسة الخصوصية | https://linkinize.com/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "storage", "tabs", "activeTab", "alarms" ], "action": { "default_popup": "www\/index.html", "default_title": "Linkinize - Bookmark Manager for Teams" }, "commands": { "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+L", "mac": "Command+Shift+L", "chromeos": "Ctrl+Shift+L", "linux": "Ctrl+Shift+L" } } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/app.linkinize.com\/*" ], "js": [ "auth.js" ] }, { "matches": [ "https:\/\/app.linkinize.com\/*" ], "js": [ "app-sync.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "name": "Linkinize - Bookmark Manager for Teams", "short_name": "Linkinize - Bookmark Manager for Teams", "description": "Bookmark Manager for Teams", "version": "0.5.0" } |