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开发的Chrome扩展程序,该扩展的主要功能是“Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!”。
扩展截图
下载Titles On Youtube Links扩展crx文件
下载Titles On Youtube Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 a positioned 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"
]
}
]
}