URL Loader
Load a pre-defined list of URLs
Что такое URL Loader?
URL Loader - это расширение Chrome, разработанное Alexandre, и его основная функция - "Load a pre-defined list of URLs".
Снимки экрана расширения
Скачать файл CRX расширения URL Loader
Скачайте файлы расширений 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
Основная информация о расширении
Название | |
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" ] } |