Search Queue

A queue for searching the web!

Search Queue란 무엇입니까?

Search Queue은(는) isaiahnields에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A queue for searching the web!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Search Queue 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.                    

확장 프로그램 기본 정보

이름 Search Queue Search Queue
ID ipcifbklbbpchinpdfcfbhpghnknioff
공식 URL https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff
설명 A queue for searching the web!
파일 크기 60.39 KB
설치 횟수 37
현재 버전 2.18
최근 업데이트 2018-08-08
출시 날짜 2018-08-08
평점 5.00/5 총 3 개의 평점
개발자 isaiahnields
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/isaiahnields/search-queue
도움말 페이지 URL https://github.com/isaiahnields/SearchQueue/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search Queue",
    "version": "2.18",
    "icons": {
        "128": "resources\/images\/icon_128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "A queue for searching the web!",
    "background": {
        "scripts": [
            "resources\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "resources\/images\/icon.png"
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Alt+Up",
                "windows": "Alt+Up",
                "mac": "Alt+Up"
            },
            "description": "Next",
            "global": false
        },
        "previous": {
            "suggested_key": {
                "default": "Alt+Down",
                "windows": "Alt+Down",
                "mac": "Alt+Down"
            },
            "description": "Previous",
            "global": false
        }
    },
    "permissions": [
        "storage",
        "notifications",
        "tabs",
        "background",
        "contextMenus"
    ]
}