Window Layout Resizer
Resize the current window into different customizable layouts (Multiple monitors are supported).
Window Layout Resizer क्या है?
Window Layout Resizer rynu.smith द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Resize the current window into different customizable layouts (Multiple monitors are supported)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Window Layout Resizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to adjust the current window layout size to the commonly used sizes (like half, one-third, or quarter window sizes). You can define your own custom layout size from the options page or change the order of items that are shown in the popup window. The extension is compatible with high resolution (HD) (like Retina) displays and handles multiple monitors very well. Also, the layout settings work fine if a monitor is replaced (percentages are stored instead of the absolute values). This can be used to split your screen into different sections and place different web pages into different areas. For more details or posting suggestions please use: http://add0n.com/layout-resizer.html For technical bug reports use: https://github.com/ray-lothian/Layout-Resizer/
एक्सटेंशन की मूल जानकारी
नाम | Window Layout Resizer |
ID | gpogedegpcfmbpfbjilofgfmjglebnhi |
आधिकारिक URL | https://chromewebstore.google.com/detail/window-layout-resizer/gpogedegpcfmbpfbjilofgfmjglebnhi |
विवरण | Resize the current window into different customizable layouts (Multiple monitors are supported). |
फ़ाइल का आकार | 201 KB |
स्थापना संख्या | 1,122 |
वर्तमान संस्करण | 0.1.4 |
अंतिम अपडेट | 2020-09-02 |
प्रकाशन तिथि | 2017-10-07 |
रेटिंग | 4.33/5 कुल 6 रेटिंग्स |
डेवलपर | rynu.smith |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://add0n.com/layout-resizer.html |
सहायता पृष्ठ URL | http://add0n.com/layout-resizer.html |
गोपनीयता नीति पृष्ठ URL | https://add0n.com/policies/rynu.smith.txt |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Window Layout Resizer", "description": "Resize the current window into different customizable layouts (Multiple monitors are supported).", "version": "0.1.4", "icons": { "16": "Content\/Images\/16.png", "24": "Content\/Images\/24.png", "32": "Content\/Images\/32.png", "64": "Content\/Images\/64.png", "128": "Content\/Images\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "Scripts\/Resizer.js", "Scripts\/background.js" ], "persistent": false }, "permissions": [ "storage", "system.display", "notifications" ], "homepage_url": "https:\/\/add0n.com\/layout-resizer.html", "commands": { "resize0": { "description": "Resize to template #1" }, "resize1": { "description": "Resize to template #2" }, "resize2": { "description": "Resize to template #3" }, "resize3": { "description": "Resize to template #4" } } } |