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.
擴展基本資訊
名稱 | Scripture Guide |
ID | lkagejkikblabiegfnehlknmlgckhgan |
官方網址 | 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 |
電子郵箱 | [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" ] } |