S.E.P.I.A. Framework Tools

Browser tools for SEPIA open-source, voice-assistant framework.

S.E.P.I.A. Framework Tools là gì?

S.E.P.I.A. Framework Tools là một tiện ích mở rộng Chrome được phát triển bởi https://sepia-framework.github.io, và tính năng chính của nó là "Browser tools for SEPIA open-source, voice-assistant framework.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng S.E.P.I.A. Framework Tools

Tải xuống các tệp mở rộng S.E.P.I.A. Framework Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        SEPIA is an open-source, digital voice-assistant that runs on your own server, e.g. at home on a Raspberry Pi. The SEPIA cross-platform client that connects to your server works nicely as a stand-alone app in Chrome's kiosk mode (think of it as a smart-speaker with display), but this mode has no control buttons for browser tabs (obviously).

This extensions simply adds 2 additional functions to better handle kiosk mode apps:

- Switch the user-agent to Chrome mobile or any custom string
- Show/hide an additional navigation bar overlay (excluding localhosts) to close tabs

More functions might be added over time as needed ;-)

The extension is open-source (like anything in SEPIA) and the code can be found here:

https://github.com/SEPIA-Framework/sepia-browser-extensions

Have fun and don't forget to check-out SEPIA open assistant :-)

https://sepia-framework.github.io/
or:
https://github.com/SEPIA-Framework/sepia-docs                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên S.E.P.I.A. Framework Tools S.E.P.I.A. Framework Tools
ID gbdjpbipoaacccffgemiflnhfldahopp
URL Chính Thức https://chromewebstore.google.com/detail/sepia-framework-tools/gbdjpbipoaacccffgemiflnhfldahopp
Mô tả Browser tools for SEPIA open-source, voice-assistant framework.
Kích Thước Tệp 106 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.6.2
Cập Nhật Lần Cuối 2019-07-10
Ngày Phát Hành 2019-07-06
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://sepia-framework.github.io
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://sepia-framework.github.io/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "S.E.P.I.A. Framework Tools",
    "short_name": "SEPIA Tools",
    "version": "0.6.2",
    "author": "Bytemind.de",
    "homepage_url": "https:\/\/sepia-framework.github.io\/",
    "description": "Browser tools for SEPIA open-source, voice-assistant framework.",
    "permissions": [
        "activeTab",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/sepia-framework.github.io\/*",
                "*:\/\/localhost:*\/*",
                "*:\/\/127.0.0.1:*\/*",
                "*:\/\/*\/sepia\/assist\/*",
                "*:\/\/*.local\/*"
            ],
            "run_at": "document_end",
            "js": [
                "navbar.js"
            ],
            "css": [
                "navbar.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/*.svg"
    ],
    "manifest_version": 2
}