Direct Link playlist
A leightweight playlist handler for direct link media
Direct Link playlistとは何ですか?
Direct Link playlistはcaptaingabiによって開発されたChromeの拡張機能で、その主な機能は「A leightweight playlist handler for direct link media」です。
拡張機能のスクリーンショット
Direct Link playlist拡張機能のCRXファイルをダウンロード
Direct Link playlist拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple playlist handler for direct links with mp3 mp4 webm files.
Features:
- add media on all tabs on active window to playlist that has mp3, mp4 or webm extension.
- video control buttons
- volume control
- randomization ensures all videos are played before you see the same video
- move videos on the list with drag and drop
- small ! icon when no tab is controlled, in this case a new tab will be opened
Github:
https://github.com/captaingabi/Chrome-YT-playlist 拡張機能の基本情報
| 名前 | |
| ID | pijgpdncncnkjhpkgfladhcglhdajiim |
| 公式URL | https://chromewebstore.google.com/detail/direct-link-playlist/pijgpdncncnkjhpkgfladhcglhdajiim |
| 説明 | A leightweight playlist handler for direct link media |
| ファイルサイズ | 42.05 KB |
| インストール数 | 25 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2020-07-21 |
| 公開日 | 2020-07-19 |
| 開発者 | captaingabi |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Direct Link playlist",
"version": "1.0.0",
"description": "A leightweight playlist handler for direct link media",
"permissions": [
"activeTab",
"storage",
"tabs",
"unlimitedStorage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "PNG\/icon16.png",
"32": "PNG\/icon32.png",
"48": "PNG\/icon48.png",
"128": "PNG\/icon128.png"
}
},
"icons": {
"16": "PNG\/icon16.png",
"32": "PNG\/icon32.png",
"48": "PNG\/icon48.png",
"128": "PNG\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*.mp3",
"*:\/\/*\/*.mp4",
"*:\/\/*\/*.webm"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"manifest_version": 2,
"web_accessible_resources": [
"SVG\/player.svg"
]
} | |