Sermon.ly snippets Chrome Extension

Create snippets in Sermon.ly from the current URL

什麼是Sermon.ly snippets Chrome Extension?

Sermon.ly snippets Chrome Extension是由Your Giving Inc.開發的Chrome擴展程式,該擴展的主要功能是“Create snippets in Sermon.ly from the current URL”。

擴展截圖

screenshot
screenshot

下載Sermon.ly snippets Chrome Extension擴展crx文件

下載Sermon.ly snippets Chrome Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Sermon.ly snippets Chrome Extension Sermon.ly snippets Chrome Extension
ID akjhaagpamjglpgkanjpbnpdokmllhjk
官方網址 https://chromewebstore.google.com/detail/sermonly-snippets-chrome/akjhaagpamjglpgkanjpbnpdokmllhjk
簡介 Create snippets in Sermon.ly from the current URL
檔案大小 176 KB
安裝次數 60
目前版本 1.6
更新時間 2021-12-12
上架時間 2021-12-12
開發者 Your Giving Inc.
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.sermon.ly
隱私政策頁面URL https://get.tithe.ly/privacy-policy
支援的語言 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"
    ]
}