URL Loader
Load a pre-defined list of URLs
Qu'est-ce que URL Loader ?
URL Loader est une extension Chrome développée par Alexandre, et sa fonction principale est "Load a pre-defined list of URLs".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension URL Loader
Téléchargez les fichiers d'extension URL Loader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
- 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
Informations de Base sur l'Extension
Nom | |
ID | pehlobngallbbadijocicdimmcpcckhl |
URL Officiel | https://chrome.google.com/webstore/detail/pehlobngallbbadijocicdimmcpcckhl |
Description | Load a pre-defined list of URLs |
Taille du Fichier | 10.6 KB |
Nombre d'Installations | 933 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2013-11-08 |
Date de Publication | 2013-11-08 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | Alexandre |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |