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