Custom YouTube Start Stop
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
Custom YouTube Start Stop là gì?
Custom YouTube Start Stop là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Li, và tính năng chính của nó là "This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Custom YouTube Start Stop
Tải xuống các tệp mở rộng Custom YouTube Start Stop dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
URL Chính Thức | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
Mô tả | This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is… |
Kích Thước Tệp | 31.64 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 0.1.2 |
Cập Nhật Lần Cuối | 2021-05-11 |
Ngày Phát Hành | 2021-05-11 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Jonathan Li |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom YouTube Start Stop", "version": "0.1.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?v=*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "19": "img\/icon19.png", "38": "img\/icon38.png", "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "page_action": { "default_title": "Custom YouTube Start Stop", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |