Random Tab
A browser action that selects a random tab open in the user's current window and opens it in a new window.
Wat is Random Tab?
Random Tab is een Chrome-extensie ontwikkeld door Daniel Cates, en de belangrijkste functie is "A browser action that selects a random tab open in the user's current window and opens it in a new window.".
Download het CRX-bestand van de extensie Random Tab
Download Random Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | |
ID | ejbdbkngdhlekahamfbammngmibmoghd |
Officiële URL | https://chrome.google.com/webstore/detail/random-tab/ejbdbkngdhlekahamfbammngmibmoghd |
Beschrijving | A browser action that selects a random tab open in the user's current window and opens it in a new window. |
Bestandsgrootte | 12.3 KB |
Aantal Installaties | 184 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2014-12-26 |
Publicatiedatum | 2014-12-26 |
Beoordeling | 3.80/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Daniel Cates |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random Tab", "version": "0.1", "description": "A browser action that selects a random tab open in the user's current window and opens it in a new window.", "icons": { "32": "dice32.png", "64": "dice64.png", "128": "dice128.png" }, "permissions": [ "tabs", "windows" ], "browser_action": { "default_title": "Random Tab", "default_icon": "dice128.png" }, "background": { "scripts": [ "randomTab.js" ], "persistent": false } } |