Search Queue

A queue for searching the web!

Search Queue là gì?

Search Queue là một tiện ích mở rộng Chrome được phát triển bởi isaiahnields, và tính năng chính của nó là "A queue for searching the web!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search Queue

Tải xuống các tệp mở rộng Search Queue dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Search Queue Search Queue
ID ipcifbklbbpchinpdfcfbhpghnknioff
URL Chính Thức https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff
Mô tả A queue for searching the web!
Kích Thước Tệp 60.39 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 2.18
Cập Nhật Lần Cuối 2018-08-08
Ngày Phát Hành 2018-08-08
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển isaiahnields
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/isaiahnields/search-queue
URL Trang Trợ Giúp https://github.com/isaiahnields/SearchQueue/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}