Scripture Guide
In-browser integration of scripture.guide
What is Scripture Guide?
Scripture Guide is a Chrome extension developed by https://scripture.guide, and its main feature is "In-browser integration of scripture.guide".
Extension Screenshots
Download Scripture Guide Extension CRX File
Download Scripture Guide extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Scripture Guide |
ID | lkagejkikblabiegfnehlknmlgckhgan |
Official URL | https://chromewebstore.google.com/detail/scripture-guide/lkagejkikblabiegfnehlknmlgckhgan |
Description | In-browser integration of scripture.guide |
File Size | 44.03 KB |
Installation Count | 37 |
Current Version | 1.2.6.17 |
Last Updated | 2020-10-18 |
Publish Date | 2018-09-27 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://scripture.guide |
[email protected] | |
Payment Type | free |
Extension Website | http://scripture.guide |
Help Page URL | http://scripture.guide/faq |
Privacy Policy Page URL | http://kckern.com/privacy.html |
Supported Languages | 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" ] } |