Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Reddit Column View क्या है?
Reddit Column View omniZero द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Splits posts into columns. Compatible with old and new Reddit layouts."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Column View एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Rearranges posts into columns! Works with old Reddit and with redesign (in Card layout; Classic and Compact aren't currently fully supported). Number of columns scales with screen resolution and can be forced via extension's settings.
एक्सटेंशन की मूल जानकारी
नाम | Reddit Column View |
ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
आधिकारिक URL | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
विवरण | Splits posts into columns. Compatible with old and new Reddit layouts. |
फ़ाइल का आकार | 97.43 KB |
स्थापना संख्या | 157 |
वर्तमान संस्करण | 1.0.7 |
अंतिम अपडेट | 2021-02-15 |
प्रकाशन तिथि | 2021-01-14 |
रेटिंग | 4.60/5 कुल 5 रेटिंग्स |
डेवलपर | omniZero |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Column View", "version": "1.0.7", "description": "Splits posts into columns. Compatible with old and new Reddit layouts.", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.reddit.com\/*", "https:\/\/old.reddit.com\/*" ], "js": [ "main.js" ] } ], "web_accessible_resources": [ "images\/*.png", "images\/*.ico" ], "manifest_version": 2 } |