ReStyle for Allo

A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface.

ReStyle for Allo là gì?

ReStyle for Allo là một tiện ích mở rộng Chrome được phát triển bởi johnuberbacher, và tính năng chính của nó là "A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ReStyle for Allo

Tải xuống các tệp mở rộng ReStyle for Allo 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

                        ReStyle for Allo

A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface.

Newest Updates:
- Removed improper permissions "browsing history", warning should be gone
- More Visual Tweaks
- Added some better instructions for command key functionality (ctrl+shft+a)

Current Changes:
- Remove the hover effect on the input field and flatten it down
- Increase the width and adjust the margins on the chat area
- Reduced shadows on shared images/media and header
- Bunch of other visual tweaks
- Optional Dark Mode Theme
- New option to open Allow within it's own "chat-sized" window

Follow/Contribute/Star on Github!
https://github.com/johnuberbacher/restyle-for-allo                    

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

Tên ReStyle for Allo ReStyle for Allo
ID fhmcbmpjkemimhcmlcahaocnkgcpjkdf
URL Chính Thức https://chromewebstore.google.com/detail/restyle-for-allo/fhmcbmpjkemimhcmlcahaocnkgcpjkdf
Mô tả A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface.
Kích Thước Tệp 35.42 KB
Số Lần Cài Đặt 654
Phiên Bản Hiện Tại 0.1.9
Cập Nhật Lần Cuối 2018-03-01
Ngày Phát Hành 2018-02-28
Đánh Giá 4.50/5 Tổng số 22 Đánh Giá
Nhà Phát Triển johnuberbacher
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/johnuberbacher/restyle-for-allo
URL Trang Trợ Giúp https://github.com/johnuberbacher/restyle-for-allo
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ReStyle for Allo",
    "version": "0.1.9",
    "description": "A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface.",
    "icons": {
        "16": "images\/icon-32.png",
        "48": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-32.png",
            "48": "images\/icon-64.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "ReStyle for Allo",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "open-window": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            },
            "description": "Open Allo in new window",
            "global": true
        }
    },
    "permissions": [
        "https:\/\/allo.google.com\/web",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/allo.google.com\/web"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "popup.js",
                "darkMode.js",
                "vanilla.js",
                "background.js"
            ],
            "run_at": "document_idle"
        }
    ]
}