YouTube Repeat
Repeats a YouTube video
什麼是YouTube Repeat?
YouTube Repeat是由Jimmy Fu開發的Chrome擴展程式,該擴展的主要功能是“Repeats a YouTube video”。
擴展截圖
下載YouTube Repeat擴展crx文件
下載YouTube Repeat擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Minimalistic extension for replaying YouTube videos. Instructions: 1) Open a YouTube video 2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused) 3) Press it to enable or disable
擴展基本資訊
名稱 | YouTube Repeat |
ID | bijjfhgimphjklllkmbdapkfemdnhmpj |
官方網址 | https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj |
簡介 | Repeats a YouTube video |
檔案大小 | 24.45 KB |
安裝次數 | 2,323 |
目前版本 | 1.1 |
更新時間 | 2015-10-09 |
上架時間 | 2015-10-08 |
評分 | 4.37/5 共 35 次評分 |
開發者 | Jimmy Fu |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Repeat", "short_name": "Repeat", "description": "Repeats a YouTube video", "version": "1.1", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon.png", "default_title": "Repeat" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |