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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}