Shorty
URL Shortener
ما هو Shorty؟
Shorty هو إضافة Chrome تم تطويرها بواسطة https://r3bl.com، والميزة الرئيسية لها هي "URL Shortener".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Shorty
قم بتنزيل ملفات الامتداد Shorty بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.
معلومات أساسية عن التمديد
الاسم | Shorty |
ID | cbgcnhimnlnjejdopldfdicfingmaijg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
الوصف | URL Shortener |
حجم الملف | 120 KB |
عدد التثبيتات | 50 |
النسخة الحالية | 2.1 |
آخر تحديث | 2023-03-11 |
تاريخ النشر | 2020-05-31 |
تقييم | 5.00/5 مجموع تقييمات 5 |
المطور | https://r3bl.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://r3bl.com |
عنوان صفحة المساعدة | https://github.com/r3bl-org/shorty/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shorty", "description": "URL Shortener", "version": "2.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_title": "Click to shorten URL", "default_popup": "index.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "Shortens URL in address bar" } }, "permissions": [ "clipboardWrite", "activeTab" ], "host_permissions": [ "*:\/\/*.tinyurl.com\/*" ] } |