My Position in Queue
An extension that shows your position in queue
什么是My Position in Queue?
My Position in Queue是由Developer Tools开发的Chrome扩展程序,该扩展的主要功能是“An extension that shows your position in queue”。
扩展截图
下载My Position in Queue扩展crx文件
下载My Position in Queue扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension that shows your position in queue
扩展基本信息
名称 | My Position in Queue |
ID | jdadckafhliibhblifnnkkbofidpfjcd |
官方URL | https://chromewebstore.google.com/detail/my-position-in-queue/jdadckafhliibhblifnnkkbofidpfjcd |
简介 | An extension that shows your position in queue |
文件大小 | 36.69 KB |
安装次数 | 21 |
当前版本 | 1.0 |
更新时间 | 2020-10-22 |
上架时间 | 2020-10-05 |
开发者 | Developer Tools |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://lightningboltapp.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "My Position in Queue", "version": "1.0", "description": "An extension that shows your position in queue", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/csapptools.docusignhq.com\/*" ], "js": [ "jquery.js", "content.js" ], "css": [ "style.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "My Position in Queue" }, "permissions": [ "tabs", "notifications", "https:\/\/csapptools.docusignhq.com\/*", "storage" ] } |