Hover Link
When hovering over short url link or any link it will show the final destination URL.
ما هو Hover Link؟
Hover Link هو إضافة Chrome تم تطويرها بواسطة connerb، والميزة الرئيسية لها هي "When hovering over short url link or any link it will show the final destination URL.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Hover Link
قم بتنزيل ملفات الامتداد Hover Link بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Hover Link is a simple extension that allows you to view and copy short URL and normal URL links on websites. For the short URL links it will display their destination URL as well.
معلومات أساسية عن التمديد
الاسم | |
ID | ggbpdjpocpnohglmhmppdkimpoiklegb |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb |
الوصف | When hovering over short url link or any link it will show the final destination URL. |
حجم الملف | 60.52 KB |
عدد التثبيتات | 423 |
النسخة الحالية | 1.0 |
آخر تحديث | 2014-10-06 |
تاريخ النشر | 2014-10-06 |
تقييم | 2.44/5 مجموع تقييمات 9 |
المطور | connerb |
نوع الدفع | free |
موقع الإضافة | http://www.connerb.com |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hover Link", "description": "When hovering over short url link or any link it will show the final destination URL.", "version": "1.0", "manifest_version": 2, "icons": { "48": "icons\/48x48.png" }, "background": { "page": "html\/background.html" }, "permissions": [ "*:\/\/*\/*", "storage", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/script.js" ], "css": [ "css\/script.css" ], "all_frames": false, "run_at": "document_end" } ], "options_page": "html\/options.html", "page_action": { "default_icon": { "19": "icons\/19x19.png" }, "default_title": "Hover Link", "default_popup": "html\/options.html" } } |