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.」です。
拡張機能のスクリーンショット
ReStyle for Allo拡張機能のCRXファイルをダウンロード
ReStyle for Allo拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        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                     拡張機能の基本情報
| 名前 |   |  
| 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"
        }
    ]
}  |  |