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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Crawls a TU Berlin ISIS course for available resources (PDF documents, etc.) and allows the user to download them all at once."입니다.

확장 프로그램 스크린샷

screenshot

TU Berlin ISIS Course Crawler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}