Link Preview
Generates preview window of link that follows mouse when hovering specific elements
ما هو Link Preview؟
Link Preview هو إضافة Chrome تم تطويرها بواسطة dapoDev، والميزة الرئيسية لها هي "Generates preview window of link that follows mouse when hovering specific elements".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Link Preview
قم بتنزيل ملفات الامتداد Link Preview بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | |
ID | bjoabjghhaegfioipdfaggpecmegfelp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/link-preview/bjoabjghhaegfioipdfaggpecmegfelp |
الوصف | Generates preview window of link that follows mouse when hovering specific elements |
حجم الملف | 39.05 KB |
عدد التثبيتات | 230 |
النسخة الحالية | 1.3 |
آخر تحديث | 2017-12-15 |
تاريخ النشر | 2017-12-15 |
تقييم | 1.00/5 مجموع تقييمات 2 |
المطور | dapoDev |
نوع الدفع | free |
موقع الإضافة | https://github.com/emdap/LinkPreview |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Link Preview", "description": "Generates preview window of link that follows mouse when hovering specific elements", "version": "1.3", "background": { "scripts": [ "thirdparty\/jquery.min.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.kijiji.ca\/b*", "https:\/\/www.kijiji.ca\/b*" ], "js": [ "thirdparty\/jquery.min.js", "webSpecific\/kijiji.js", "webSpecific\/createFields.js", "previewWindow.js", "bindings.js", "main.js" ], "css": [ "tailDiv.css" ], "run_at": "document_start" } ] } |