Tab Rotate
Loop through a set of tabs - ideal for a Dashboard or Advertisement Display
What is Tab Rotate?
Tab Rotate is a Chrome extension developed by Kevin Sheedy, and its main feature is "Loop through a set of tabs - ideal for a Dashboard or Advertisement Display".
Extension Screenshots
Download Tab Rotate Extension CRX File
Download Tab Rotate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Tab Rotate |
ID | pjgjpabbgnnoohijnillgbckikfkbjed |
Official URL | https://chromewebstore.google.com/detail/tab-rotate/pjgjpabbgnnoohijnillgbckikfkbjed |
Description | Loop through a set of tabs - ideal for a Dashboard or Advertisement Display |
File Size | 55.01 KB |
Installation Count | 32,128 |
Current Version | 0.6.2 |
Last Updated | 2021-09-06 |
Publish Date | 2019-11-27 |
Rating | 4.25/5 Total 44 Ratings |
Developer | Kevin Sheedy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/KevinSheedy/chrome-tab-rotate |
Supported Languages | 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:\/\/*\/" ] } |