Auto Open Links

Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…

什么是Auto Open Links?

Auto Open Links是由vvveleva开发的Chrome扩展程序,该扩展的主要功能是“Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…”。

下载Auto Open Links扩展crx文件

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

扩展使用说明

                        Auto Open Links allows you to open the first n links from google in new tabs with a shortcut.

Examples:

ctrl + shift + 1 : will open the first link on google in a new tab

ctrl + shift + 7 : will open the first 7 links on google in a new tab

If you run into any bugs, please report them at [email protected]. Thanks!                    

扩展基本信息

名称 Auto Open Links Auto Open Links
ID coiapeoijgdcanenjddgdgcepejabljl
官方URL https://chrome.google.com/webstore/detail/auto-open-links/coiapeoijgdcanenjddgdgcepejabljl
简介 Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…
文件大小 39.57 KB
安装次数 154
当前版本 1.1
更新时间 2015-09-12
上架时间 2015-09-12
评分 3.33/5 共6次评分
开发者 vvveleva
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Open Links",
    "version": "1.1",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/*"
            ],
            "js": [
                "auto_open_links.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "auto_open_links.js"
    ]
}