Random Tab
A browser action that selects a random tab open in the user's current window and opens it in a new window.
什么是Random Tab?
Random Tab是由Daniel Cates开发的Chrome扩展程序,该扩展的主要功能是“A browser action that selects a random tab open in the user's current window and opens it in a new window.”。
下载Random Tab扩展crx文件
下载Random Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | ejbdbkngdhlekahamfbammngmibmoghd |
官方URL | https://chrome.google.com/webstore/detail/random-tab/ejbdbkngdhlekahamfbammngmibmoghd |
简介 | A browser action that selects a random tab open in the user's current window and opens it in a new window. |
文件大小 | 12.3 KB |
安装次数 | 184 |
当前版本 | 0.1 |
更新时间 | 2014-12-26 |
上架时间 | 2014-12-26 |
评分 | 3.80/5 共5次评分 |
开发者 | Daniel Cates |
付费类型 | free |
支持的语言 | 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 } } |