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 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 फ़ाइल डाउनलोड करें

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

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

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