Sermon.ly snippets Chrome Extension

Create snippets in Sermon.ly from the current URL

Qu'est-ce que Sermon.ly snippets Chrome Extension ?

Sermon.ly snippets Chrome Extension est une extension Chrome développée par Your Giving Inc., et sa fonction principale est "Create snippets in Sermon.ly from the current URL".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Sermon.ly snippets Chrome Extension

Téléchargez les fichiers d'extension Sermon.ly snippets Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Sermon.ly snippets Chrome Extension Sermon.ly snippets Chrome Extension
ID akjhaagpamjglpgkanjpbnpdokmllhjk
URL Officiel https://chromewebstore.google.com/detail/sermonly-snippets-chrome/akjhaagpamjglpgkanjpbnpdokmllhjk
Description Create snippets in Sermon.ly from the current URL
Taille du Fichier 176 KB
Nombre d'Installations 60
Version Actuelle 1.6
Dernière Mise à Jour 2021-12-12
Date de Publication 2021-12-12
Développeur Your Giving Inc.
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.sermon.ly
URL de la Page de Politique de Confidentialité https://get.tithe.ly/privacy-policy
Langues Prises en Charge 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"
    ]
}