Scripture Guide
In-browser integration of scripture.guide
Scripture Guideとは何ですか?
Scripture Guideはhttps://scripture.guideによって開発されたChromeの拡張機能で、その主な機能は「In-browser integration of scripture.guide」です。
拡張機能のスクリーンショット
Scripture Guide拡張機能のCRXファイルをダウンロード
Scripture Guide拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Browser integration of the scripture.guide. Scripture references on the pages you browse will automatically turn into links that will allow you to effortlessly lookup the passages referenced. 拡張機能の基本情報
| 名前 | |
| ID | lkagejkikblabiegfnehlknmlgckhgan |
| 公式URL | https://chromewebstore.google.com/detail/scripture-guide/lkagejkikblabiegfnehlknmlgckhgan |
| 説明 | In-browser integration of scripture.guide |
| ファイルサイズ | 44.03 KB |
| インストール数 | 37 |
| 現在のバージョン | 1.2.6.17 |
| 最終更新日 | 2020-10-18 |
| 公開日 | 2018-09-27 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | https://scripture.guide |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://scripture.guide |
| ヘルプページのURL | http://scripture.guide/faq |
| プライバシーポリシーページのURL | http://kckern.com/privacy.html |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Scripture Guide",
"description": "In-browser integration of scripture.guide",
"version": "1.2.6.17",
"background": {
"scripts": [
"background.js"
]
},
"omnibox": {
"keyword": "sg"
},
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"64": "icon_64.png",
"128": "icon_128.png"
},
"browser_action": {
"default_icon": "icon_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"exclude_matches": [
"*:\/\/scripture.guide\/*",
"*:\/\/scriptures.info\/*",
"*:\/\/isaiahexplained.com\/*",
"*:\/\/*.isaiahexplained.com\/*",
"*:\/\/*.bookofmormon.online\/*",
"*:\/\/*.scripture.guide\/*",
"*:\/\/*.scriptures.info\/*",
"*:\/\/*.google.com\/*",
"*:\/\/*.google.co.kr\/*",
"*:\/\/*.google.co.jp\/*",
"*:\/\/*.google.ca\/*",
"*:\/\/*.bing.com\/*",
"*:\/\/*.kckern.info\/*",
"*:\/\/*.kckern.info\/*",
"*:\/\/*.churchofjesuschrist.org\/search*"
],
"js": [
"linker.js"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"contextMenus"
]
} | |