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文件

下載Alexa BrowserHelp擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
    ]
}