ChatGPT WideScreen Adjuster
Adjust your ChatGPT display width freely. Say goodbye to narrow text fields, and improve readability.
ChatGPT WideScreen Adjuster क्या है?
ChatGPT WideScreen Adjuster masachika.kmd द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adjust your ChatGPT display width freely. Say goodbye to narrow text fields, and improve readability."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT WideScreen Adjuster एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
"ChatGPT WideScreen Adjuster" is an extension that allows you to freely adjust the width of the display area in ChatGPT. You can customize the width of the display area, which was previously fixed, to your preferred reading width. The main features include: * Freely adjust the width: You can freely adjust the width of the ChatGPT display area to your preference. * Easy operation: By moving the slider in the popup, you can instantly adjust the width of the display area. * Save settings: Once you've adjusted the width, it is automatically saved and applied from the next time onwards. With "ChatGPT WideScreen Adjuster", enjoy a more comfortable ChatGPT experience. ※ If you encounter any bugs or have any concerns, please open an issue on the following GitHub repository and we will address it. https://github.com/masachika-kamada/ChatGPT-WideScreen-Adjuster
एक्सटेंशन की मूल जानकारी
नाम | ChatGPT WideScreen Adjuster |
ID | ioimfefhpfjpifdfijgjnbiojlneeiac |
आधिकारिक URL | https://chromewebstore.google.com/detail/chatgpt-widescreen-adjust/ioimfefhpfjpifdfijgjnbiojlneeiac |
विवरण | Adjust your ChatGPT display width freely. Say goodbye to narrow text fields, and improve readability. |
फ़ाइल का आकार | 15.44 KB |
स्थापना संख्या | 832 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2023-06-14 |
प्रकाशन तिथि | 2023-06-11 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | masachika.kmd |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT WideScreen Adjuster", "version": "1.0.0", "description": "__MSG_appDesc__", "default_locale": "en", "author": "Kamada Masachika", "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "script.js" ] } ], "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" } }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline';" } } |