eAsistent+
Makes eAsistent actually usable.
什麼是eAsistent+?
eAsistent+是由Matic Babnik開發的Chrome擴展程式,該擴展的主要功能是“Makes eAsistent actually usable.”。
擴展截圖
下載eAsistent+擴展crx文件
下載eAsistent+擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tweaks for easistent.com
- Dark mode
- Redesigned home page
- Adds some easistent plus features to the free tier
- Memes 擴展基本資訊
| 名稱 | |
| ID | kghgoadkgnipnenlcjamhmiodhohadpp |
| 官方網址 | https://chromewebstore.google.com/detail/easistent+/kghgoadkgnipnenlcjamhmiodhohadpp |
| 簡介 | Makes eAsistent actually usable. |
| 檔案大小 | 35.12 KB |
| 安裝次數 | 77 |
| 目前版本 | 1.2.1 |
| 更新時間 | 2022-10-10 |
| 上架時間 | 2021-04-22 |
| 開發者 | Matic Babnik |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/fubuki-fanclub/ea-sux |
| 說明頁面URL | https://github.com/fubuki-fanclub/ea-sux/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "eAsistent+",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"version": "1.2.1",
"description": "Makes eAsistent actually usable.",
"icons": {
"16": "icons\/16.png",
"24": "icons\/24.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"page_action": {
"default_popup": "popup.html",
"default_icon": "icons\/128.png",
"show_matches": [
"*:\/\/komunikacija.easistent.com\/*",
"*:\/\/www.easistent.com\/*",
"*:\/\/easistent.com\/*"
]
},
"background": {
"scripts": [
"background.bundle.js"
],
"matches": [
"*:\/\/komunikacija.easistent.com\/*",
"*:\/\/www.easistent.com\/*",
"*:\/\/easistent.com\/*"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/komunikacija.easistent.com\/*",
"*:\/\/www.easistent.com\/*",
"*:\/\/easistent.com\/*"
],
"js": [
"content.bundle.js"
],
"css": [
"kekw.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"student_app.js"
],
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*:\/\/easistent.com\/*",
"*:\/\/www.easistent.com\/*",
"*:\/\/komunikacija.easistent.com\/*"
]
} | |