Simple YouTube Loop
Simple, clean way to loop a YouTube video.
什麼是Simple YouTube Loop?
Simple YouTube Loop是由mihelcic開發的Chrome擴展程式,該擴展的主要功能是“Simple, clean way to loop a YouTube video.”。
擴展截圖
下載Simple YouTube Loop擴展crx文件
下載Simple YouTube Loop擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension provides a simple YouTube loop button, on your HTML5 video controls bar. Nothing more.
擴展基本資訊
名稱 | Simple YouTube Loop |
ID | bfhmecnhdehblbnadegfpbmmbbobkjff |
官方網址 | https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff |
簡介 | Simple, clean way to loop a YouTube video. |
檔案大小 | 39.23 KB |
安裝次數 | 1,172 |
目前版本 | 0.6 |
更新時間 | 2017-09-07 |
上架時間 | 2017-09-07 |
評分 | 4.58/5 共 26 次評分 |
開發者 | mihelcic |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple YouTube Loop", "short_name": "YouTube Loop", "description": "Simple, clean way to loop a YouTube video.", "version": "0.6", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "js\/jq.js", "js\/content.js" ] } ], "icons": { "19": "images\/icon_19.png", "38": "images\/icon_38.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "persistent": false, "scripts": [ "js\/bg.js" ] }, "page_action": { "default_icon": { "19": "images\/icon_19.png", "38": "images\/icon_38.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "default_title": "Simple YouTube Loop" }, "permissions": [ "tabs" ] } |