Youtube Clip Playlist
This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting.
Youtube Clip Playlist क्या है?
Youtube Clip Playlist https://blog.maki0419.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Clip Playlist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Chrome Web Store continues to reject my product information, making it impossible for me to provide explanations here. I was asked to describe my product without mentioning any keywords, which is impossible. Therefore, please visit the GitHub of this project and the introduction blog post for detailed explanations. https://github.com/YoutubeClipPlaylist/YoutubeClipPlaylist https://blog.maki0419.com/2022/06/chrome-extension-youtube-clip-playlist.html I apologize to everyone here and sincerely sorry for any inconvenience caused to users. 😥
एक्सटेंशन की मूल जानकारी
नाम | Youtube Clip Playlist |
ID | kdlhjpdoaabhpolkaghkjklfcdfjapkh |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-clip-playlist/kdlhjpdoaabhpolkaghkjklfcdfjapkh |
विवरण | This is a playlist tool to play video clips with "start~end time" directly on Youtube/Onedrive/GoogleDrive/TwitCasting. |
फ़ाइल का आकार | 535 KB |
स्थापना संख्या | 225 |
वर्तमान संस्करण | 15.2.6 |
अंतिम अपडेट | 2023-12-18 |
प्रकाशन तिथि | 2022-06-18 |
रेटिंग | 4.80/5 कुल 5 रेटिंग्स |
डेवलपर | https://blog.maki0419.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://blog.maki0419.com/2022/06/chrome-extension-youtube-clip-playlist.html |
सहायता पृष्ठ URL | https://github.com/YoutubeClipPlaylist/YoutubeClipPlaylist/issues |
समर्थित भाषाएँ | en,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "15.2.6", "manifest_version": 3, "default_locale": "en", "permissions": [ "storage", "tabs", "unlimitedStorage" ], "host_permissions": [ "https:\/\/github.com\/*", "https:\/\/gitlab.com\/*", "https:\/\/*.githubusercontent.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "assets\/icon\/icon16.png", "32": "assets\/icon\/icon32.png", "48": "assets\/icon\/icon48.png", "128": "assets\/icon\/icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "assets\/icon\/icon16.png", "32": "assets\/icon\/icon32.png", "48": "assets\/icon\/icon48.png", "128": "assets\/icon\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/youtube.googleapis.com\/*", "https:\/\/*.sharepoint.com\/*", "https:\/\/onedrive.live.com\/*", "https:\/\/twitcasting.tv\/*" ], "run_at": "document_start", "all_frames": true, "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] }, { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/youtube.googleapis.com\/*", "https:\/\/*.sharepoint.com\/*", "https:\/\/onedrive.live.com\/*", "https:\/\/twitcasting.tv\/*" ], "run_at": "document_idle", "all_frames": true, "js": [ "assets\/assjs\/ass.min.js" ] } ], "web_accessible_resources": [ { "resources": [ "contentScript.html", "contentScript_lyricHelper.html" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/drive.google.com\/*", "https:\/\/youtube.googleapis.com\/*", "https:\/\/*.sharepoint.com\/*", "https:\/\/onedrive.live.com\/*", "https:\/\/twitcasting.tv\/*" ] } ] } |