Ryver

Easily share webpages with your Ryver app!

Ryverคืออะไร?

Ryver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.ryver.com และคุณลักษณะหลักของมันคือ "Easily share webpages with your Ryver app!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ryver

ดาวน์โหลดไฟล์ส่วนขยาย Ryver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Ryver Ryver
ID enfihnimccegcflhmlgheppmfomnjekf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ryver/enfihnimccegcflhmlgheppmfomnjekf
คำอธิบาย Easily share webpages with your Ryver app!
ขนาดไฟล์ 491 KB
จำนวนการติดตั้ง 610
เวอร์ชันปัจจุบัน 2.0.6
อัปเดตครั้งล่าสุด 2018-11-01
วันที่เผยแพร่ 2018-10-29
คะแนน 4.38/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา https://www.ryver.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ryver.com
URL หน้าช่วยเหลือ https://support.ryver.com
ภาษาที่รองรับ 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"
}