Make It Right
Right To Left Language Support
Make It Right क्या है?
Make It Right XYZET द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Right To Left Language Support"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Make It Right एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Right-To-Left language support for main platforms: Youtube, Slack and Discord. יישור לימין ותמיכת עברית / ערבית באתרים: יוטיוב, סלאק, דיסקורד محاذاة الى جهة اليمين وتقديم دعم فني بالعبرية والعربية في اليوتيوب، ديسكورد وسلآك Features: - Hebrew and Arabic support. - Smart Posts: aligns each post by language. - Smart Type: right-aligns your text while typing, by language. - Youtube RTL support: Player page / Chat box / Channel page / Community page and more. - Easy check: Comprehensive popup to enable and disable each platform. רשימת מאפיינים - זיהוי ותמיכה בעברית / ערבית - יישור כל פוסט על פי השפה שלו - יישור ימין במגוון דפים ביוטיוב: דף הנגן, קופסאת הצ'אט בשידורי לייב, דף הקהילה ועוד - אפשרות נוחה להפעלה וביטול פיטשרים שונים על ידי ממשק נוח
एक्सटेंशन की मूल जानकारी
नाम | Make It Right |
ID | hhapmoicaklmgfhebjahjompnklgodeb |
आधिकारिक URL | https://chromewebstore.google.com/detail/make-it-right/hhapmoicaklmgfhebjahjompnklgodeb |
विवरण | Right To Left Language Support |
फ़ाइल का आकार | 396 KB |
स्थापना संख्या | 447 |
वर्तमान संस्करण | 1.7 |
अंतिम अपडेट | 2023-11-11 |
प्रकाशन तिथि | 2022-02-16 |
डेवलपर | XYZET |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.xyzet.me/make-it-right |
सहायता पृष्ठ URL | https://www.xyzet.me/make-it-right |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Make It Right", "description": "Right To Left Language Support", "version": "1.7", "manifest_version": 3, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.slack.com\/*", "https:\/\/www.discord.com\/*", "https:\/\/*.youtube.com\/*", "https:\/\/youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/discord.com\/*", "https:\/\/*.discord.com\/*", "https:\/\/*.slack.com\/*", "https:\/\/*.youtube.com\/*", "https:\/\/youtube.com\/*" ], "js": [ "content.js" ], "css": [ "fix.css", "discordrtl.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "icon.png", "icon16.png", "icon48.png", "icon128.png" ], "matches": [ "https:\/\/*.discord.com\/*", "https:\/\/*.slack.com\/*", "https:\/\/*.youtube.com\/*" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Make It Right!", "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |