JustWords for Chrome
JustWords for Chrome enables JustWords lyric projection software in your browser.
什麼是JustWords for Chrome?
JustWords for Chrome是由https://justwords.live開發的Chrome擴展程式,該擴展的主要功能是“JustWords for Chrome enables JustWords lyric projection software in your browser.”。
擴展截圖
下載JustWords for Chrome擴展crx文件
下載JustWords for Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
JustWords lets churches and houses of worship display song lyrics, liturgy and scripture in a simple, uncluttered way. You must install JustWords for Chrome in order to use JustWords in your browser.
- Quickly find the songs you need with full-text search at your fingertips.
- Set up multiple display themes to customise colour, font and size.
- Our innovative song rendering algorithm means your songs automatically reformat to fit the screen, even when you change themes midway through a presentation.
JustWords is currently under development and is pre-release software. 擴展基本資訊
| 名稱 | |
| ID | bncpjjjjagbmbmaefckmjecknmigphna |
| 官方網址 | https://chromewebstore.google.com/detail/justwords-for-chrome/bncpjjjjagbmbmaefckmjecknmigphna |
| 簡介 | JustWords for Chrome enables JustWords lyric projection software in your browser. |
| 檔案大小 | 63.51 KB |
| 安裝次數 | 43 |
| 目前版本 | 0.2.3 |
| 更新時間 | 2023-07-18 |
| 上架時間 | 2020-02-28 |
| 開發者 | https://justwords.live |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.justwords.live/ |
| 隱私政策頁面URL | https://www.justwords.live/privacy |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "JustWords for Chrome",
"description": "JustWords for Chrome enables JustWords lyric projection software in your browser.",
"version": "0.2.3",
"permissions": [
"fontSettings",
"storage",
"unlimitedStorage"
],
"host_permissions": [
"https:\/\/api.biblegateway.com\/",
"https:\/\/nodejs.bible.com\/"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/localhost\/*",
"https:\/\/*.justwords.live\/*"
],
"js": [
"content.js"
]
}
],
"externally_connectable": {
"matches": [
"http:\/\/localhost\/*",
"https:\/\/*.justwords.live\/*"
]
},
"icons": {
"128": "icon128.png",
"64": "icon64.png",
"32": "icon32.png",
"16": "icon16.png"
}
} | |