YouTube Repeat Button
YouTube Repeat Button.
什麼是YouTube Repeat Button?
YouTube Repeat Button是由Vladislav Tupikin開發的Chrome擴展程式,該擴展的主要功能是“YouTube Repeat Button.”。
擴展截圖
下載YouTube Repeat Button擴展crx文件
下載YouTube Repeat Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Google Chrome extension that embeds a video repeat button directly into the YouTube player
擴展基本資訊
名稱 | YouTube Repeat Button |
ID | mpaeilkfigmkompknfmmnojgkbkahfdk |
官方網址 | https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk |
簡介 | YouTube Repeat Button. |
檔案大小 | 15.33 KB |
安裝次數 | 394 |
目前版本 | 1.0.0 |
更新時間 | 2021-01-05 |
上架時間 | 2019-12-20 |
評分 | 3.00/5 共 4 次評分 |
開發者 | Vladislav Tupikin |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/MrRefactoring/youtube-repeat |
支援的語言 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.0.0", "default_locale": "en", "icons": { "16": "src\/images\/icons\/icon16.png", "48": "src\/images\/icons\/icon48.png", "128": "src\/images\/icons\/icon128.png" }, "content_scripts": [ { "run_at": "document_end", "css": [ "src\/styles.css" ], "js": [ "src\/helpers\/onElementHeightChange.js", "src\/helpers\/onRepeatClick.js", "src\/helpers\/removeTitle.js", "src\/helpers\/resetTitle.js", "src\/helpers\/createButton.js", "src\/helpers\/patcher.js", "src\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "tabs" ] } |