YouTube Extension Suite
This extesnion lists the total play time of a youtube playlist
YouTube Extension Suiteとは何ですか?
YouTube Extension SuiteはIgnat Remizovによって開発されたChromeの拡張機能で、その主な機能は「This extesnion lists the total play time of a youtube playlist」です。
拡張機能のスクリーンショット
YouTube Extension Suite拡張機能のCRXファイルをダウンロード
YouTube Extension Suite拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension is still in heavy development!
Right now the only feature is that it shows the length of time it would take to watch a playlist.
I have a lot planned, so stay tuned for more features coming soon! 拡張機能の基本情報
| 名前 | |
| ID | chkbpjapgjioieidapgjipnfodocolcn |
| 公式URL | https://chrome.google.com/webstore/detail/youtube-extension-suite/chkbpjapgjioieidapgjipnfodocolcn |
| 説明 | This extesnion lists the total play time of a youtube playlist |
| ファイルサイズ | 60.71 KB |
| インストール数 | 65 |
| 現在のバージョン | 0.2.1 |
| 最終更新日 | 2016-05-05 |
| 公開日 | 2016-05-05 |
| 評価 | 3.00/5 合計 2 レビュー |
| 開発者 | Ignat Remizov |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"author": "Ignat Remizov",
"manifest_version": 2,
"name": "YouTube Extension Suite",
"short_name": "YES!",
"version": "0.2.1",
"description": "This extesnion lists the total play time of a youtube playlist",
"icons": {
"16": "images\/Icon16.png",
"48": "images\/Icon48.png",
"128": "images\/Icon128.png"
},
"permissions": [
"identity",
"storage",
"*:\/\/*.youtube.com\/watch*list*",
"*:\/\/*.youtube.com\/playlist*"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/watch*list*",
"*:\/\/*.youtube.com\/playlist*"
],
"js": [
"js\/vendor\/moment.js",
"js\/vendor\/moment-duration-format.js",
"js\/helpers.js",
"js\/duration_helpers.js",
"js\/dom_helpers.js",
"js\/main.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"keys.json",
"pageTokens.json",
"js\/*.js"
],
"oauth2": {
"client_id": "940024462417-5ais2trpuo7htdvonu4ulsmoia54fnsc.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/youtube.readonly"
]
}
} | |