Lectio Plus
Lectio Plus tilføjer nye funktioner, bl.a. auto-login, til Lectio.dk
什么是Lectio Plus?
Lectio Plus是由Kresten Laust开发的Chrome扩展程序,该扩展的主要功能是“Lectio Plus tilføjer nye funktioner, bl.a. auto-login, til Lectio.dk”。
扩展截图
下载Lectio Plus扩展crx文件
下载Lectio Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
NYT! Profilbillede skjuler, Comic Sans og dark mode er nu tilgængelig. Fikset en fejl hvor login-knappen bliver spammet. Bemærk: For at få auto login til at fungere SKAL du gemme dine login oplysninger i Chrome(tryk på 'Gem adgangskode' når den spørger) Lectio Plus tilføjer funktionaliteter som auto-login og profilbillede skjuler. Flere funktioner vil komme i fremtiden. Hvis du har nogle forslag eller fejlanmeldelser så er du velkommen til at enten skrive til mig på [email protected] eller lave en anmeldelse.
扩展基本信息
名称 | Lectio Plus |
ID | cnmbjibjcppkmmhankefdilkgfhdkfff |
官方URL | https://chromewebstore.google.com/detail/lectio-plus/cnmbjibjcppkmmhankefdilkgfhdkfff |
简介 | Lectio Plus tilføjer nye funktioner, bl.a. auto-login, til Lectio.dk |
文件大小 | 124 KB |
安装次数 | 250 |
当前版本 | 1.3.1 |
更新时间 | 2019-10-30 |
上架时间 | 2019-10-30 |
评分 | 5.00/5 共3次评分 |
开发者 | Kresten Laust |
付费类型 | free |
支持的语言 | da |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lectio Plus", "short_name": "Lectio+", "version": "1.3.1", "description": "Lectio Plus tilf\u00f8jer nye funktioner, bl.a. auto-login, til Lectio.dk", "author": "Kresten Laust", "manifest_version": 2, "permissions": [ "storage", "*:\/\/lectio.dk\/*", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/www.lectio.dk\/*" ], "js": [ "main.js" ] }, { "matches": [ "*:\/\/www.lectio.dk\/lectio\/*\/SkemaNy.aspx*" ], "js": [ "jquery-3.4.1.js", "post_load.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.lectio.dk\/*" ], "js": [ "pre_load.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "lectio ikon.png" } }, "icons": { "16": "lectio ikon.png" } } |