Alexa BrowserHelp

Control your Browser via Amazon Alexa

Alexa BrowserHelp란 무엇입니까?

Alexa BrowserHelp은(는) https://browserhelp.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control your Browser via Amazon Alexa"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Control your Chrome™ browser via Amazon Alexa! This skill works together with the Alexa skill BrowserHelp. 
To install the Alexa skill, visit:
www.browserhelp.me

Syncing skill and extension works by Login With Amazon. After installing the Chrome™ extension, you will be prompted to login with the same Amazon account as you are using for your Echo device. Likewise, when first started, this BrowserHelp skill will prompt you to link with your account. After these steps are completed, simply try one of the sample utterances to get started. After starting the skill, you can try any of the following phrases:

- Search with Google
- Highlight links
- Open link {number}
- Remove highlighting
- Navigate {back/forward}
- Open favourite {1/2/3}
- Scroll {up/down}
- Reload page
- {Open/close} tab
- Show news
- Open {Youtube/Google/Facebook/Twitter/Hacker News}                    

확장 프로그램 기본 정보

이름 Alexa BrowserHelp Alexa BrowserHelp
ID jjjjekfmojknabiflakbmnmapkkmefbe
공식 URL https://chromewebstore.google.com/detail/alexa-browserhelp/jjjjekfmojknabiflakbmnmapkkmefbe
설명 Control your Browser via Amazon Alexa
파일 크기 93.66 KB
설치 횟수 2,779
현재 버전 0.0.1
최근 업데이트 2017-06-23
출시 날짜 2017-06-23
평점 3.35/5 총 17 개의 평점
개발자 https://browserhelp.me
결제 유형 free
확장 프로그램 웹 사이트 http://browserhelp.me
개인정보 보호 정책 페이지 URL http://browserhelp.me/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alexa BrowserHelp",
    "short_name": "BrowserHelp",
    "version": "0.0.1",
    "description": "Control your Browser via Amazon Alexa",
    "background": {
        "persistent": true,
        "scripts": [
            "socket.io.js",
            "md5.min.js",
            "jquery.min.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "settings.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/serene-harbor-37271.herokuapp.com\/login"
            ],
            "run_at": "document_start",
            "js": [
                "setup.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/serene-harbor-37271.herokuapp.com\/*"
        ]
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "history",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}