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.”。
擴展截圖
下載TU Berlin ISIS Course Crawler擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | bmmpficfjmfkknimfadpkdddodcccidf |
| 官方網址 | 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"
}
}
} | |