Restore Link Card
A browser extension to restore OGP link cards on Twitter (X).
Restore Link Card क्या है?
Restore Link Card ろぼいん द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension to restore OGP link cards on Twitter (X)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Restore Link Card एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Twitter (X) removed headings from links in tweets (posts) on October 4, 2023. This extension restores the removed headlines and restores the previous ease of use.
एक्सटेंशन की मूल जानकारी
नाम | Restore Link Card |
ID | ifgokfhnpkmpjgjiimciofkebopknkli |
आधिकारिक URL | https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli |
विवरण | A browser extension to restore OGP link cards on Twitter (X). |
फ़ाइल का आकार | 12.15 KB |
स्थापना संख्या | 570 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2023-10-06 |
प्रकाशन तिथि | 2023-10-05 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | ろぼいん |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Robot-Inventor/restore-link-card |
सहायता पृष्ठ URL | https://github.com/Robot-Inventor/restore-link-card |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Restore Link Card", "short_name": "RestoreLinkCard", "version": "1.1.0", "description": "A browser extension to restore OGP link cards on Twitter (X).", "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "loader.js" ] } ], "web_accessible_resources": [ { "resources": [ "main.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ] } ] } |