URL Loader

Load a pre-defined list of URLs

URL Loader क्या है?

URL Loader Alexandre द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Load a pre-defined list of URLs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में URL Loader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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