Rise Chrome Extension
Share announcements, positive news, educational content, and more!
什么是Rise Chrome Extension?
Rise Chrome Extension是由https://www.risevision.com开发的Chrome扩展程序,该扩展的主要功能是“Share announcements, positive news, educational content, and more!”。
扩展截图
下载Rise Chrome Extension扩展crx文件
下载Rise Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
From sharing announcements, positive news, or events, Rise Chrome Extension makes it easy to keep your organization connected. With Rise Vision you can share content to digital signage, your website, and more. Now with the Rise Chrome Extension, you can see that same content every time you open a new tab. To get started add the Rise Chrome Extension, enter the Schedule URL you’d like to see, and then every time you open a new tab you’ll see your Rise Vision content! **To help our customers during this period we've made Rise Chrome Extension available for free to anyone with a Rise Vision subscription.** ------------------------------------------- ABOUT RISE VISION Are you wanting to communicate better? Maybe you're a school that wants to distribute a message regarding a school opening or a closing. Or maybe you want to boost morale and highlight a birthday, or an achievement, or an important event. Or perhaps you want to share company goals and accomplishments with employees now working from home. Well, with your audience at home right now, it's harder than ever to get your message heard, there are so many channels, and so many notifications, emails just get archived, people don't pay attention! You need a centralized place where you can easily communicate with your audience, and where that audience will notice, even when they're at home. And that's where Rise Vision can help. Most Organizations struggle to communicate with their audience. At Rise Vision, we help keep everyone in the know. Rise Vision is a cloud-based service that helps your organization communicate better and stay connected. We make keeping your organization connected easy or your money back. And now, we've made it even easier to communicate better. You can now reach your audience wherever they are, even at home To use Rise Vision, you just: 1. Pick and customize your template 2. Activate your display 3. Share it anywhere (using this Chrome extension, for example!) Communicate better, fast! Keep your templates interesting with fresh, free, content ideas that we provide each week. Rise Vision makes it easy to share your content at the push of button to: - Your digital signage. - To desktop browsers. (with this Chrome extension, for example!) - As a URL. - Your website or blog. - Your intranet. - Your Learning Management System, and more! Keeping everyone in the know, wherever they may be, is now even easier. Publish once and reach your audience wherever they are. Remember, keeping your organization connected doesn't have to be difficult, we make it easy or your money back. To learn more about this exciting new product from Rise Vision visit us at risevision.com/anywhere. HELP & SUGGESTIONS If you have feedback or need help, you can open a support ticket here: https://www.risevision.com/contact-us TERMS OF SERVICE, TERMS OF USE, AND PRIVACY POLICY By installing the extension, you agree to the Rise Vision - Terms of Service (https://help.risevision.com/hc/en-us/articles/360000924446-Terms-of-Service) - Terms of Use (https://help.risevision.com/hc/en-us/articles/360028973051-Terms-of-Use) - Privacy Policy (https://help.risevision.com/hc/en-us/articles/360000915023-Privacy-Policy) ABOUT PERMISSIONS This extension requests the following permissions: - We use Chrome local storage to store data locally to decrease the time it takes to show content - We require the remote code permission in the extension to show the content for the extension. - We use content scripts in our welcome page and browser action button popup in order to capture input data using the chrome.storage API.
扩展基本信息
名称 | |
ID | dkoohkdagjpgjheoaaegomjhdccfbcle |
官方URL | https://chromewebstore.google.com/detail/rise-chrome-extension/dkoohkdagjpgjheoaaegomjhdccfbcle |
简介 | Share announcements, positive news, educational content, and more! |
文件大小 | 28.2 KB |
安装次数 | 409 |
当前版本 | 2021.02.12.7256 |
更新时间 | 2022-05-24 |
上架时间 | 2020-06-11 |
评分 | 5.00/5 共1次评分 |
开发者 | https://www.risevision.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.risevision.com/ |
帮助页面URL | https://www.risevision.com/contact-us |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rise Chrome Extension", "description": "Share announcements, positive news, educational content, and more!", "version": "2021.02.12.7256", "manifest_version": 2, "permissions": [ "storage" ], "content_security_policy": "script-src https:\/\/cdn.segment.com\/ https:\/\/fast.wistia.com\/ 'self'; object-src 'self'", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png" } }, "icons": { "16": "images\/icon-with-padding-16.png", "32": "images\/icon32.png", "48": "images\/icon-with-padding-48.png", "128": "images\/icon-with-padding-128.png" }, "background": { "page": "background.html", "persistent": false }, "chrome_url_overrides": { "newtab": "newtab.html" }, "content_scripts": [ { "matches": [ "*:\/\/storage.googleapis.com\/widgets.risevision.com\/creative-projects\/welcome\/*index.html" ], "all_frames": true, "js": [ "welcome-content-script.js" ] }, { "matches": [ "*:\/\/storage.googleapis.com\/widgets.risevision.com\/creative-projects\/welcome\/*schedule-url.html" ], "all_frames": true, "js": [ "popup-content-script.js" ] } ] } |