Ryver
Easily share webpages with your Ryver app!
什么是Ryver?
Ryver是由https://www.ryver.com开发的Chrome扩展程序,该扩展的主要功能是“Easily share webpages with your Ryver app!”。
扩展截图
下载Ryver扩展crx文件
下载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 |
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" } |