URL Loader

Load a pre-defined list of URLs

URL Loaderคืออะไร?

URL Loader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexandre และคุณลักษณะหลักของมันคือ "Load a pre-defined list of URLs"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
    ]
}