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 jozxyqk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Titles On Youtube Links एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 सहायता पृष्ठ URL 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" ] } ] }