LMS Hanyang PDF Download Button
PDF download button on Learning X course content page of Hanyang University, made by Yeonjin Park
什么是LMS Hanyang PDF Download Button?
LMS Hanyang PDF Download Button是由yjinpark1221开发的Chrome扩展程序,该扩展的主要功能是“PDF download button on Learning X course content page of Hanyang University, made by Yeonjin Park”。
扩展截图
下载LMS Hanyang PDF Download Button扩展crx文件
下载LMS Hanyang PDF Download Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
강의 자료를 다운받는 과정이 귀찮게 느껴지는 한양대학교 학생분들을 위한 크롬 확장 프로그램입니다.
전체 주차 강의 콘텐츠를 볼 수 있는 화면에 pdf 파일을 다운받을 수 있는 버튼을 만들어줍니다.
This extension is for students of Hanyang University annoyed by the bothersome steps to download pdf files.
This extension adds a download button for pdf files on the course content page that shows courses of all weeks.
Privacy policy : https://github.com/yjinpark1221/LMS-PDF-Download-Button#privacy-policy 扩展基本信息
| 名称 | |
| ID | ncefcfonojolnifjgkeplkbjbbfogeel |
| 官方URL | https://chromewebstore.google.com/detail/lms-hanyang-pdf-download/ncefcfonojolnifjgkeplkbjbbfogeel |
| 简介 | PDF download button on Learning X course content page of Hanyang University, made by Yeonjin Park |
| 文件大小 | 13.51 KB |
| 安装次数 | 294 |
| 当前版本 | 1.1 |
| 更新时间 | 2023-03-29 |
| 上架时间 | 2023-03-21 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | yjinpark1221 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://github.com/yjinpark1221/LMS-PDF-Download-Button |
| 支持的语言 | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "LMS Hanyang PDF Download Button",
"version": "1.1",
"description": "PDF download button on Learning X course content page of Hanyang University, made by Yeonjin Park",
"icons": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
},
"content_scripts": [
{
"js": [
"scripts\/content.js"
],
"matches": [
"https:\/\/learning.hanyang.ac.kr\/courses\/*"
]
}
],
"permissions": [
"downloads"
],
"background": {
"service_worker": "background.js"
}
} | |