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