Ryver

Easily share webpages with your Ryver app!

Ryver là gì?

Ryver là một tiện ích mở rộng Chrome được phát triển bởi https://www.ryver.com, và tính năng chính của nó là "Easily share webpages with your Ryver app!".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ryver

Tải xuống các tệp mở rộng Ryver 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

                        The Ryver Chrome Extension allows you to convert web site URLs or Gmail messages into a Topic inside of your Ryver account! Post to either a Team or a User.

Posting a Gmail message will include the full HTML email formatting and any attachments! You can then have a comment discussion in Ryver about the email, rather than getting into "Reply All hell".

NOTE: To share a Gmail message to Ryver, you must first click on an email message or thread from inside of Gmail. You cannot create a Post from the Inbox view.                    

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

Tên Ryver Ryver
ID enfihnimccegcflhmlgheppmfomnjekf
URL Chính Thức https://chromewebstore.google.com/detail/ryver/enfihnimccegcflhmlgheppmfomnjekf
Mô tả Easily share webpages with your Ryver app!
Kích Thước Tệp 491 KB
Số Lần Cài Đặt 610
Phiên Bản Hiện Tại 2.0.6
Cập Nhật Lần Cuối 2018-11-01
Ngày Phát Hành 2018-10-29
Đánh Giá 4.38/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://www.ryver.com
Loại Thanh Toán free
Trang Web Mở Rộng https://ryver.com
URL Trang Trợ Giúp https://support.ryver.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "32": "icons\/app-32.png",
        "57": "icons\/app-57.png",
        "128": "icons\/app-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/app-32.png"
        },
        "default_title": "Ryver"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "javascripts\/vendor.js",
                "javascripts\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "javascripts\/gmail.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "desktopCapture",
        "*:\/\/*.contatta.com\/*",
        "*:\/\/*.ryver.com\/*",
        "*:\/\/localhost\/*",
        "*:\/\/fonts.googleapis.com\/*"
    ],
    "web_accessible_resources": [
        "css\/*",
        "icons\/*",
        "images\/*",
        "javascripts\/*",
        "workspace.html"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost:*\/*",
            "*:\/\/*.ryver.com:*\/*",
            "*:\/\/mail.google.com\/*",
            "http:\/\/mail.google.com\/*",
            "https:\/\/mail.google.com\/*"
        ]
    },
    "version": "2.0.6"
}