Sermon.ly snippets Chrome Extension

Create snippets in Sermon.ly from the current URL

Sermon.ly snippets Chrome Extension là gì?

Sermon.ly snippets Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi Your Giving Inc., và tính năng chính của nó là "Create snippets in Sermon.ly from the current URL".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sermon.ly snippets Chrome Extension

Tải xuống các tệp mở rộng Sermon.ly snippets Chrome Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sermon.ly snippets Chrome Extension Sermon.ly snippets Chrome Extension
ID akjhaagpamjglpgkanjpbnpdokmllhjk
URL Chính Thức https://chromewebstore.google.com/detail/sermonly-snippets-chrome/akjhaagpamjglpgkanjpbnpdokmllhjk
Mô tả Create snippets in Sermon.ly from the current URL
Kích Thước Tệp 176 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2021-12-12
Ngày Phát Hành 2021-12-12
Nhà Phát Triển Your Giving Inc.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.sermon.ly
URL Trang Chính Sách Bảo Mật https://get.tithe.ly/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}