Quick Launcher
Smart links organizer. Create collection of related links or add urls of different environments(uat, prod) of various deployed apps
什么是Quick Launcher?
Quick Launcher是由https://ankitverma.me开发的Chrome扩展程序,该扩展的主要功能是“Smart links organizer. Create collection of related links or add urls of different environments(uat, prod) of various deployed apps”。
扩展截图
下载Quick Launcher扩展crx文件
下载Quick Launcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension to create a collection of various related useful links. You can also add various apps deployed in different environments like uat, staging, production for quick access. Quick launcher also has a "Most Visited Sites" tab to quickly access sites that matter to you the most. Stop wasting your time by searching for links/sites, with this smart quick launcher you can organize your various related links under a collection which you can access whenever you need it. Functionalities: ★ Add collections( you can add items in various collections ) ★ Access apps deployed to uat, staging, production ( you can add JSON config of apps ) ★ Access to most visited sites ★ Set default tabs under settings Supported JSON Config to add deployed apps:(Supports up-to 3 environments per site) { "ProjectA":{ "uat": "https://uat-projectA.com", "staging": "https://staging-projectA.com", "prod":"https://projectA.com" }, "ProjectB":{ "uat": "https://uat-ProjectB.com", "staging": "https://staging-ProjectB.com", "prod":"https://ProjectB.com" }, .... .... }
扩展基本信息
名称 | Quick Launcher |
ID | ejfnjjfimjllfmeohacobipgepnilapm |
官方URL | https://chromewebstore.google.com/detail/quick-launcher/ejfnjjfimjllfmeohacobipgepnilapm |
简介 | Smart links organizer. Create collection of related links or add urls of different environments(uat, prod) of various deployed apps |
文件大小 | 214 KB |
安装次数 | 218 |
当前版本 | 1.4.16 |
更新时间 | 2022-05-23 |
上架时间 | 2019-10-05 |
评分 | 4.56/5 共9次评分 |
开发者 | https://ankitverma.me |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://ankitverma.me/quick-launcher |
帮助页面URL | https://ankitverma.me/quick-launcher#contact-us |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Launcher", "description": "Smart links organizer. Create collection of related links or add urls of different environments(uat, prod) of various deployed apps", "version": "1.4.16", "icons": { "16": "static\/img\/icon_16x16.png", "48": "static\/img\/icon_48x48.png", "128": "static\/img\/icon_128x128.png" }, "browser_action": { "default_icon": { "19": "static\/img\/icon_19x19.png", "38": "static\/img\/icon_38x38.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "lib\/jquery.min.js", "lib\/lodash.min.js", "static\/js\/common.js", "static\/js\/background.js", "static\/js\/collections.js", "static\/js\/most-visited.js", "static\/js\/settings.js", "static\/js\/analytics.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "storage", "topSites", "contextMenus" ] } |