CloudyRoll
Managing your Crunchyroll queue has never been easier.
CloudyRollとは何ですか?
CloudyRollはCloudMaxによって開発されたChromeの拡張機能で、その主な機能は「Managing your Crunchyroll queue has never been easier.」です。
拡張機能のスクリーンショット
CloudyRoll拡張機能のCRXファイルをダウンロード
CloudyRoll拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- Receive notifications when new episodes become available.
- Get a quick overview of which day all series air and schedule your week accordingly.
- Series are grouped depending on whether you're following a simulcast, watching ocassionally, put on hold, haven't began watching at all, or finished.
- Marking episodes as seen. Especially useful for minisodes where Crunchyroll or CloudyRoll may fail to properly mark an episode as seen.
- ... And much more! 拡張機能の基本情報
| 名前 | |
| ID | dlllcfhpddibpcimgobcchnaknpbalod |
| 公式URL | https://chromewebstore.google.com/detail/cloudyroll/dlllcfhpddibpcimgobcchnaknpbalod |
| 説明 | Managing your Crunchyroll queue has never been easier. |
| ファイルサイズ | 548 KB |
| インストール数 | 150 |
| 現在のバージョン | 1.2.3.94 |
| 最終更新日 | 2016-06-27 |
| 公開日 | 2016-06-27 |
| 評価 | 3.00/5 合計 8 レビュー |
| 開発者 | CloudMax |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://cloudmodding.com/cloudyroll |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"author": "Max 'CloudMax' Persson",
"name": "CloudyRoll",
"short_name": "CloudyRoll",
"version": "1.2.3.94",
"description": "Managing your Crunchyroll queue has never been easier.",
"omnibox": {
"keyword": "cr"
},
"permissions": [
"storage",
"background",
"cookies",
"contextMenus",
"notifications",
"alarms",
"*:\/\/*.crunchyroll.com\/*"
],
"icons": {
"16": "assets\/images\/cr.png",
"48": "assets\/images\/cr.png",
"128": "assets\/images\/cr.png"
},
"background": {
"scripts": [
"background\/background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "assets\/images\/cr.png",
"default_popup": "popup\/popup.html"
},
"options_ui": {
"page": "options\/options.html",
"chrome_style": true
},
"content_scripts": [
{
"js": [
"content\/content.js"
],
"css": [
"content\/content.css"
],
"matches": [
"*:\/\/*.crunchyroll.com\/*"
],
"run_at": "document_end"
},
{
"js": [
"queue\/queue.js"
],
"css": [
"queue\/queue.css"
],
"matches": [
"*:\/\/*.crunchyroll.com\/home\/queue*"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"content\/content.js.map",
"queue\/queue.js.map"
],
"manifest_version": 2
} | |