Titles On Youtube Links
Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
ما هو Titles On Youtube Links؟
Titles On Youtube Links هو إضافة Chrome تم تطويرها بواسطة jozxyqk، والميزة الرئيسية لها هي "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Titles On Youtube Links
قم بتنزيل ملفات الامتداد Titles On Youtube Links بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Displays a custom "title text" with video titles when you mouse-over youtube links. Designed to be very light-weight and unobtrusive. Specifically, it catches hover events on links, uses the youtube API to fetch the title (if not already cached), and displays it by creating apositioned above the link with the title.معلومات أساسية عن التمديد
الاسم Titles On Youtube Links ID lkkpcpneigfenfmcbpllkkfahcmhhhjl عنوان URL الرسمي https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl الوصف Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again! حجم الملف 38.82 KB عدد التثبيتات 168 النسخة الحالية 2.0 آخر تحديث 2020-04-08 تاريخ النشر 2020-04-07 تقييم 4.33/5 مجموع تقييمات 3 المطور jozxyqk نوع الدفع free موقع الإضافة https://github.com/pknowles/titlesonyoutubelinks عنوان صفحة المساعدة https://github.com/pknowles/titlesonyoutubelinks/issues اللغات المدعومة en manifest.json { "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Titles On Youtube Links", "short_name": "Youtube Link Titles", "description": "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!", "version": "2.0", "icons": { "128": "icon128.png" }, "background": { "scripts": [ "jquery-2.2.0.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "" ], "exclude_matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery-2.2.0.min.js", "content.js" ] } ] }