Show Titles In X (formerly Twitter) Links
Show titles in articles and URLs shared on X (formerly Twitter).
Show Titles In X (formerly Twitter) Links क्या है?
Show Titles In X (formerly Twitter) Links Kevin Yun (@kevinyun) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show titles in articles and URLs shared on X (formerly Twitter)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Show Titles In X (formerly Twitter) Links एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
In an October 2023 update to X, headlines/titles on URLs shared on posts were removed. This Chrome extension adds back in those titles so you can get less confused on what's an image and what's a URL. Once you install this Chrome extension, there's no further action you need to do. Titles will automatically appear in your X feed. The code is open source under GPL-3.0 license. You can fork it, make improvements, or do whatever else you please: https://github.com/kevinyun/show-titles-in-twitter-links
एक्सटेंशन की मूल जानकारी
नाम | Show Titles In X (formerly Twitter) Links |
ID | kckhadoijmchkeomaphocmobgpgmbnek |
आधिकारिक URL | https://chromewebstore.google.com/detail/show-titles-in-x-formerly/kckhadoijmchkeomaphocmobgpgmbnek |
विवरण | Show titles in articles and URLs shared on X (formerly Twitter). |
फ़ाइल का आकार | 19.65 KB |
स्थापना संख्या | 319 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2023-10-24 |
प्रकाशन तिथि | 2023-10-07 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | Kevin Yun (@kevinyun) |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://docs.google.com/document/d/e/2PACX-1vQrmtYdT6zwh3UOTHWCGG3pE3J3sXhBZ3WCxlMGxRn1ApTc-b8TemTbBaIYGqrawMrkrVdmlWihKACd/pub |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Show Titles In X (formerly Twitter) Links", "description": "Show titles in articles and URLs shared on X (formerly Twitter).", "version": "1.5", "action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |