Tab Rotate
Loop through a set of tabs - ideal for a Dashboard or Advertisement Display
Tab Rotateとは何ですか?
Tab RotateはKevin Sheedyによって開発されたChromeの拡張機能で、その主な機能は「Loop through a set of tabs - ideal for a Dashboard or Advertisement Display」です。
拡張機能のスクリーンショット
Tab Rotate拡張機能のCRXファイルをダウンロード
Tab Rotate拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Allows Chrome to automatically cycle through a set of tabs. Ideal for a Dashboard or wall-mounted display.
- Configured via a JSON file
- Preloads tabs for smoother transitions
- Configuration can be loaded from a remote server
NOTE: Does not rotate through your currently open tabs
Support the project on Patreon:
https://www.patreon.com/kevdev 拡張機能の基本情報
| 名前 | |
| ID | pjgjpabbgnnoohijnillgbckikfkbjed |
| 公式URL | https://chromewebstore.google.com/detail/tab-rotate/pjgjpabbgnnoohijnillgbckikfkbjed |
| 説明 | Loop through a set of tabs - ideal for a Dashboard or Advertisement Display |
| ファイルサイズ | 55.01 KB |
| インストール数 | 32,128 |
| 現在のバージョン | 0.6.2 |
| 最終更新日 | 2021-09-06 |
| 公開日 | 2019-11-27 |
| 評価 | 4.25/5 合計 44 レビュー |
| 開発者 | Kevin Sheedy |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/KevinSheedy/chrome-tab-rotate |
| 対応言語 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Rotate",
"description": "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display",
"version": "0.6.2",
"browser_action": {
"default_icon": "img\/Play-38.png",
"default_title": "Start Tab Rotate"
},
"options_page": "index.html",
"background": {
"scripts": [
"background.js",
"import-analytics.js",
"hot-reload.js"
]
},
"icons": {
"16": "img\/Play-16.png",
"32": "img\/Play-32.png",
"48": "img\/Play-48.png",
"128": "img\/Play-128.png"
},
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/unpkg.com; object-src 'self'",
"permissions": [
"storage",
"https:\/\/ajax.googleapis.com\/",
"file:\/\/*\/",
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |