Random Tab
A browser action that selects a random tab open in the user's current window and opens it in a new window.
Qu'est-ce que Random Tab ?
Random Tab est une extension Chrome développée par Daniel Cates, et sa fonction principale est "A browser action that selects a random tab open in the user's current window and opens it in a new window.".
Télécharger le fichier CRX de l'extension Random Tab
Téléchargez les fichiers d'extension Random Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | |
ID | ejbdbkngdhlekahamfbammngmibmoghd |
URL Officiel | https://chrome.google.com/webstore/detail/random-tab/ejbdbkngdhlekahamfbammngmibmoghd |
Description | A browser action that selects a random tab open in the user's current window and opens it in a new window. |
Taille du Fichier | 12.3 KB |
Nombre d'Installations | 184 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2014-12-26 |
Date de Publication | 2014-12-26 |
Évaluation | 3.80/5 Total 5 Évaluations |
Développeur | Daniel Cates |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |