Random Tab
A browser action that selects a random tab open in the user's current window and opens it in a new window.
Vad är Random Tab?
Random Tab är en Chrome-tillägg utvecklad av Daniel Cates, och dess huvudfunktion är "A browser action that selects a random tab open in the user's current window and opens it in a new window.".
Ladda ner Random Tab-förlängningens CRX-fil
Ladda ner Random Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | |
ID | ejbdbkngdhlekahamfbammngmibmoghd |
Officiell webbadress | https://chrome.google.com/webstore/detail/random-tab/ejbdbkngdhlekahamfbammngmibmoghd |
Beskrivning | A browser action that selects a random tab open in the user's current window and opens it in a new window. |
Filstorlek | 12.3 KB |
Antal Installationer | 184 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2014-12-26 |
Publiceringsdatum | 2014-12-26 |
Betyg | 3.80/5 Totalt 5 Betyg |
Utvecklare | Daniel Cates |
Betalningssätt | free |
Stödda Språk | 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 } } |