YouTube Line
Locks the YouTube player timeline
YouTube Lineとは何ですか?
YouTube LineはLight Alexによって開発されたChromeの拡張機能で、その主な機能は「Locks the YouTube player timeline」です。
拡張機能のスクリーンショット
YouTube Line拡張機能のCRXファイルをダウンロード
YouTube Line拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension locks the YouTube player timeline. Now when player controls disappear, you can see the video timeline. 拡張機能の基本情報
| 名前 | |
| ID | olpncmboeipmdokpobmfjohclhaefofm |
| 公式URL | https://chrome.google.com/webstore/detail/youtube-line/olpncmboeipmdokpobmfjohclhaefofm |
| 説明 | Locks the YouTube player timeline |
| ファイルサイズ | 110 KB |
| インストール数 | 1,320 |
| 現在のバージョン | 1.0.3.1 |
| 最終更新日 | 2021-04-25 |
| 公開日 | 2019-04-15 |
| 評価 | 4.75/5 合計 28 レビュー |
| 開発者 | Light Alex |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://addons.lightalex.com/?source=chrome_store |
| 対応言語 | en,ru,uk |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Line",
"short_name": "__MSG_description__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "1.0.3.1",
"author": "Light Alex",
"options_page": "options.html",
"icons": {
"48": "icons\/48.png",
"64": "icons\/64.png",
"128": "icons\/128.png",
"256": "icons\/256.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/16.png",
"24": "icons\/24.png",
"32": "icons\/32.png"
}
},
"background": {
"scripts": [
"files\/script\/background.js"
]
},
"permissions": [
"tabs",
"http:\/\/youtube.com\/*",
"https:\/\/youtube.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/youtube.com\/*",
"*:\/\/www.youtube.com\/*"
],
"css": [
"files\/css\/style.css"
],
"js": [
"files\/script\/jquery-3.2.1.min.js",
"files\/script\/postload.js"
]
}
]
} | |