Random Tab
A browser action that selects a random tab open in the user's current window and opens it in a new window.
Hvad er Random Tab?
Random Tab er en Chrome-udvidelse udviklet af Daniel Cates, og dens hovedfunktion er "A browser action that selects a random tab open in the user's current window and opens it in a new window.".
Download Random Tab-udvidelses-CRX-fil
Download Random Tab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ejbdbkngdhlekahamfbammngmibmoghd |
| Officiel URL | https://chrome.google.com/webstore/detail/random-tab/ejbdbkngdhlekahamfbammngmibmoghd |
| Beskrivelse | A browser action that selects a random tab open in the user's current window and opens it in a new window. |
| Filstørrelse | 12.3 KB |
| Antal Installationer | 184 |
| Nuværende Version | 0.1 |
| Senest Opdateret | 2014-12-26 |
| Udgivelsesdato | 2014-12-26 |
| Bedømmelse | 3.80/5 Samlet 5 Bedømmelser |
| Udvikler | Daniel Cates |
| Betalingsmetode | free |
| Understøttede Sprog | 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
}
} | |