Atom.io — Image Fixer
Just a few lines of javascript to fix all those broken image links on https://atom.io
Co je Atom.io — Image Fixer?
Atom.io — Image Fixer je rozšíření Chrome vyvinuté Neel Yadav, a jeho hlavní funkcí je „Just a few lines of javascript to fix all those broken image links on https://atom.io“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Atom.io — Image Fixer
Stáhněte si soubory rozšíření Atom.io — Image Fixer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Atom.io — Image Fixer |
ID | dckhejcdhaojgaafhjmeengkkilgejma |
Oficiální URL | https://chromewebstore.google.com/detail/atomio-%E2%80%94-image-fixer/dckhejcdhaojgaafhjmeengkkilgejma |
Popis | Just a few lines of javascript to fix all those broken image links on https://atom.io |
Velikost souboru | 22.14 KB |
Počet instalací | 426 |
Aktuální Verze | 2.0.0 |
Poslední Aktualizace | 2021-10-10 |
Datum Vydání | 2021-05-22 |
Hodnocení | 3.00/5 Celkem 2 Hodnocení |
Vývojář | Neel Yadav |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://neelyadav.com/ |
URL Stránky Nápovědy | https://github.com/nlydv/atom-io-imgfix |
Podporované Jazyky | 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" ] } ] } |