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文件

下载Search Queue扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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