TU Berlin ISIS Course Crawler

Crawls a TU Berlin ISIS course for available resources (PDF documents, etc.) and allows the user to download them all at once.

TU Berlin ISIS Course Crawlerคืออะไร?

TU Berlin ISIS Course Crawler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marcelreppi และคุณลักษณะหลักของมันคือ "Crawls a TU Berlin ISIS course for available resources (PDF documents, etc.) and allows the user to download them all at once."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TU Berlin ISIS Course Crawler

ดาวน์โหลดไฟล์ส่วนขยาย TU Berlin ISIS Course Crawler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        You are a student at TU Berlin?
You frequently use the ISIS system to access course material?
You are tired of downloading every file one at a time?

This browser plugin will save you a lot of time! 
It will scan the ISIS course for all available resources (PDF documents, etc.) and allow you to download them all at once.                    

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

ชื่อ TU Berlin ISIS Course Crawler TU Berlin ISIS Course Crawler
ID bmmpficfjmfkknimfadpkdddodcccidf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tu-berlin-isis-course-cra/bmmpficfjmfkknimfadpkdddodcccidf
คำอธิบาย Crawls a TU Berlin ISIS course for available resources (PDF documents, etc.) and allows the user to download them all at once.
ขนาดไฟล์ 1.15 MB
จำนวนการติดตั้ง 91
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2020-01-21
วันที่เผยแพร่ 2020-01-20
ผู้พัฒนา marcelreppi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/marcelreppi/tu-berlin-isis-course-crawler
URL หน้าช่วยเหลือ https://github.com/marcelreppi/tu-berlin-isis-course-crawler
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TU Berlin ISIS Course Crawler",
    "version": "1.6",
    "description": "Crawls a TU Berlin ISIS course for available resources (PDF documents, etc.) and allows the user to download them all at once.",
    "homepage_url": "https:\/\/github.com\/marcelreppi\/tu-berlin-isis-course-crawler",
    "icons": {
        "16": ".\/icons\/icon16.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/isis.tu-berlin.de\/*",
        "activeTab",
        "downloads",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": ".\/icons\/icon16.png",
            "48": ".\/icons\/icon48.png",
            "128": ".\/icons\/icon128.png"
        },
        "default_title": "TU Berlin ISIS Course Crawler",
        "default_popup": ".\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/isis.tu-berlin.de\/course\/view.php?id=*"
            ],
            "js": [
                ".\/shared\/browser-polyfill.js",
                ".\/content_scripts\/coursePage.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/shared\/browser-polyfill.js",
            ".\/background_scripts\/extension-listener.js",
            ".\/background_scripts\/downloader.js"
        ]
    },
    "options_ui": {
        "page": ".\/pages\/options\/options.html"
    },
    "applications": {
        "gecko": {
            "update_url": "https:\/\/raw.githubusercontent.com\/marcelreppi\/tu-berlin-isis-course-crawler\/master\/update.json"
        }
    }
}