URL Loader

Load a pre-defined list of URLs

什么是URL Loader?

URL Loader是由Alexandre开发的Chrome扩展程序,该扩展的主要功能是“Load a pre-defined list of URLs”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载URL Loader扩展crx文件

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

扩展使用说明

                        - In the options page, define a list of URLs
- Open a new tab, and click on the extension icon in the toolbar to load the URLs one by one
- The number of remaining URLs to load is displayed on the extension icon
- On Chrome version 32+, an infobar will show the remaining URLs to load
- Otherwise, to keep track of where you are in the list, keep the options page open in a tab: it's refreshed after every click on the extension icon                    

扩展基本信息

名称 URL Loader URL Loader
ID pehlobngallbbadijocicdimmcpcckhl
官方URL https://chrome.google.com/webstore/detail/pehlobngallbbadijocicdimmcpcckhl
简介 Load a pre-defined list of URLs
文件大小 10.6 KB
安装次数 933
当前版本 1.0
更新时间 2013-11-08
上架时间 2013-11-08
评分 4.50/5 共2次评分
开发者 Alexandre
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Loader",
    "description": "Load a pre-defined list of URLs",
    "version": "1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Next URL"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "infobars"
    ]
}