Atom.io — Image Fixer
Just a few lines of javascript to fix all those broken image links on https://atom.io
Atom.io — Image Fixer क्या है?
Atom.io — Image Fixer Neel Yadav द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Just a few lines of javascript to fix all those broken image links on https://atom.io"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Atom.io — Image Fixer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Ever since I started using Atom recently, the images on the site have been broken. Browsing through their community plugins repository online to find a suitable package/theme got on my nerves. Turns out all the original image links were embedded in the html elements already. Apparently the images have been broken for at least 12 months. Figured I might as well share this fix if the folks at Atom don't seem to care. Source code: https://github.com/nlydv/atom-io-imgfix
एक्सटेंशन की मूल जानकारी
नाम | Atom.io — Image Fixer |
ID | dckhejcdhaojgaafhjmeengkkilgejma |
आधिकारिक URL | https://chromewebstore.google.com/detail/atomio-%E2%80%94-image-fixer/dckhejcdhaojgaafhjmeengkkilgejma |
विवरण | Just a few lines of javascript to fix all those broken image links on https://atom.io |
फ़ाइल का आकार | 22.14 KB |
स्थापना संख्या | 426 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2021-10-10 |
प्रकाशन तिथि | 2021-05-22 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | Neel Yadav |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://neelyadav.com/ |
सहायता पृष्ठ URL | https://github.com/nlydv/atom-io-imgfix |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Atom.io \u2014 Image Fixer", "description": "Just a few lines of javascript to fix all those broken image links on https:\/\/atom.io", "author": "Neel Yadav", "homepage_url": "https:\/\/github.com\/nlydv\/atom-io-imgfix", "version": "2.0.0", "manifest_version": 3, "background": { "service_worker": "js\/background.js" }, "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_title": "Atom.io Image Fix", "default_popup": "html\/popup.html", "default_icon": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "host_permissions": [ "https:\/\/atom.io\/*" ], "content_scripts": [ { "matches": [ "https:\/\/atom.io\/*" ], "run_at": "document_idle", "js": [ "js\/content.js" ] } ] } |