Avrio

Avrio is the new way to capture and share data analysis, user research, and learnings directly in context, with your team.

Avrio란 무엇입니까?

Avrio은(는) http://avrio.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Avrio is the new way to capture and share data analysis, user research, and learnings directly in context, with your team."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Avrio 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Sharing research and insights is messy. Avrio is here to change that.

From Data Dashboards, Google Slides, and Slack threads, to inside of apps and team member's heads. Avrio captures all of your Insights and creates a single source of truth.

Unlike slide decks or static company wiki pages, Insights saved with Avrio are always accurate, up-to-date, and saved in context.

Avrio’s Chrome Extension provides a seamless experience, built into your workflow, giving you a single source of truth embedded across your entire tech stack.
 
With Avrio's Chrome Extension you can:
 
Capture Insights Effortlessly
Create a Card from any source directly. Snap a screenshot, save images, or bookmark links without disrupting your workflow.

Promote Learnings Anywhere
Pin Insights from your collective research directly on the relevant pages of your customer's journey for your team to access and discover.
 
Research Together
Access your insights repository through app.avrio.com and start connecting the dots together with your team.

We know that all growing businesses run into the same fundamental problems. Customer research and data analysis is conducted in silos, repeated, and impossible to tell what’s still relevant. Good insights go to waste and there is never a single source of truth.

The good news? Avrio solves them.                    

확장 프로그램 기본 정보

이름 Avrio Avrio
ID ahoigniddnjgegcfnafflgplifkldjed
공식 URL https://chrome.google.com/webstore/detail/avrio/ahoigniddnjgegcfnafflgplifkldjed
설명 Avrio is the new way to capture and share data analysis, user research, and learnings directly in context, with your team.
파일 크기 4.42 MB
설치 횟수 106
현재 버전 1.18.12
최근 업데이트 2023-01-10
출시 날짜 2021-08-26
평점 5.00/5 총 8 개의 평점
개발자 http://avrio.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.avrio.com
도움말 페이지 URL https://help.avrio.com/hc/en-us
개인정보 보호 정책 페이지 URL https://www.avrio.com/legal/policies/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Avrio",
    "manifest_version": 2,
    "description": "Avrio is the new way to capture and share data analysis, user research, and learnings directly in context, with your team.",
    "homepage_url": "https:\/\/www.avrio.com",
    "icons": {
        "16": "assets\/avrio-icon-dark-16.png",
        "48": "assets\/avrio-icon-dark-48.png",
        "128": "assets\/avrio-icon-dark-128.png"
    },
    "browser_action": {
        "default_icon": "assets\/avrio-icon-dark-16.png",
        "default_title": "Avrio"
    },
    "background": {
        "scripts": [
            ".\/static\/js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "http:\/\/localhost:3000\/"
            ],
            "all_frames": false,
            "css": [
                ".\/assets\/extension.css"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/analytics.google.com\/*",
                "*:\/\/mail.google.com\/*",
                "*:\/\/docs.google.com\/*",
                "*:\/\/insights.hotjar.com\/*",
                "*:\/\/mixpanel.com\/*"
            ],
            "all_frames": true,
            "css": [
                ".\/assets\/extension.css"
            ],
            "js": [
                ".\/static\/js\/createReport.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                ".\/assets\/extension.css"
            ],
            "js": [
                ".\/static\/js\/pins.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "",
        "activeTab",
        "webRequest",
        "contextMenus",
        "webRequestBlocking",
        "background",
        "clipboardWrite",
        "storage"
    ],
    "web_accessible_resources": [
        "index.html",
        "\/static\/*",
        "\/assets\/*"
    ],
    "version": "1.18.12"
}