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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Quick Launcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}