ReStyle for Allo

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

ReStyle for Allo란 무엇입니까?

ReStyle for Allo은(는) johnuberbacher에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ReStyle for Allo 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 ReStyle for Allo ReStyle for Allo
ID fhmcbmpjkemimhcmlcahaocnkgcpjkdf
공식 URL https://chromewebstore.google.com/detail/restyle-for-allo/fhmcbmpjkemimhcmlcahaocnkgcpjkdf
설명 A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface.
파일 크기 35.42 KB
설치 횟수 654
현재 버전 0.1.9
최근 업데이트 2018-03-01
출시 날짜 2018-02-28
평점 4.50/5 총 22 개의 평점
개발자 johnuberbacher
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/johnuberbacher/restyle-for-allo
도움말 페이지 URL https://github.com/johnuberbacher/restyle-for-allo
지원되는 언어 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"
        }
    ]
}