Ryver
Easily share webpages with your Ryver app!
Ryver란 무엇입니까?
Ryver은(는) https://www.ryver.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily share webpages with your Ryver app!"입니다.
확장 프로그램 스크린샷
Ryver 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |