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 |
官方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 |
电子邮箱 | [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" ] } |