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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome Extension aimed at modifying and improving on Allo for Web's user-interface."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ReStyle for Allo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } ] } |