Scripture Guide
In-browser integration of scripture.guide
Vad är Scripture Guide?
Scripture Guide är en Chrome-tillägg utvecklad av https://scripture.guide, och dess huvudfunktion är "In-browser integration of scripture.guide".
Tilläggsskärmbilder
Ladda ner Scripture Guide-förlängningens CRX-fil
Ladda ner Scripture Guide-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Scripture Guide |
ID | lkagejkikblabiegfnehlknmlgckhgan |
Officiell webbadress | https://chromewebstore.google.com/detail/scripture-guide/lkagejkikblabiegfnehlknmlgckhgan |
Beskrivning | In-browser integration of scripture.guide |
Filstorlek | 44.03 KB |
Antal Installationer | 37 |
Aktuell Version | 1.2.6.17 |
Senast Uppdaterad | 2020-10-18 |
Publiceringsdatum | 2018-09-27 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://scripture.guide |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://scripture.guide |
Hjälpsida URL | http://scripture.guide/faq |
URL till Sekretesspolicy Sidan | http://kckern.com/privacy.html |
Stödda Språk | 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" ] } |