Sermon.ly snippets Chrome Extension

Create snippets in Sermon.ly from the current URL

Co je Sermon.ly snippets Chrome Extension?

Sermon.ly snippets Chrome Extension je rozšíření Chrome vyvinuté Your Giving Inc., a jeho hlavní funkcí je „Create snippets in Sermon.ly from the current URL“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Sermon.ly snippets Chrome Extension

Stáhněte si soubory rozšíření Sermon.ly snippets Chrome Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Use the Sermonly Snippets Clipper extension to save things you find on the web into your Sermonly account. 

Sermonly Snippets Clipper allows you to save things you find on the Web into your Sermonly account. With this Snippet Clipper extension you can highlight any text you see on a webpage and by clicking the Snippet Clipper a Snippet is automatically added to your Sermonly account along with the Web URL you clipped it from. 

Clip the items you want to keep and save them forever - no more bookmarks!                    

Základní Informace o Rozšíření

Název Sermon.ly snippets Chrome Extension Sermon.ly snippets Chrome Extension
ID akjhaagpamjglpgkanjpbnpdokmllhjk
Oficiální URL https://chromewebstore.google.com/detail/sermonly-snippets-chrome/akjhaagpamjglpgkanjpbnpdokmllhjk
Popis Create snippets in Sermon.ly from the current URL
Velikost souboru 176 KB
Počet instalací 60
Aktuální Verze 1.6
Poslední Aktualizace 2021-12-12
Datum Vydání 2021-12-12
Vývojář Your Giving Inc.
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://www.sermon.ly
URL Stránky Zásad Ochrany Soukromí https://get.tithe.ly/privacy-policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sermon.ly snippets Chrome Extension",
    "version": "1.6",
    "description": "Create snippets in Sermon.ly from the current URL",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "jquery-3.5.1.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/sermonly-icon16.png",
            "32": "images\/sermonly-icon32.png",
            "48": "images\/sermonly-icon48.png"
        }
    },
    "icons": {
        "16": "images\/sermonly-icon16.png",
        "32": "images\/sermonly-icon32.png",
        "48": "images\/sermonly-icon48.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "styles\/contentscript.css",
        "fonts\/Inter-Regular.ttf"
    ]
}