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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } ] }