Atom.io — Image Fixer
Just a few lines of javascript to fix all those broken image links on https://atom.io
Qu'est-ce que Atom.io — Image Fixer ?
Atom.io — Image Fixer est une extension Chrome développée par Neel Yadav, et sa fonction principale est "Just a few lines of javascript to fix all those broken image links on https://atom.io".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Atom.io — Image Fixer
Téléchargez les fichiers d'extension Atom.io — Image Fixer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Atom.io — Image Fixer |
ID | dckhejcdhaojgaafhjmeengkkilgejma |
URL Officiel | https://chromewebstore.google.com/detail/atomio-%E2%80%94-image-fixer/dckhejcdhaojgaafhjmeengkkilgejma |
Description | Just a few lines of javascript to fix all those broken image links on https://atom.io |
Taille du Fichier | 22.14 KB |
Nombre d'Installations | 426 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2021-10-10 |
Date de Publication | 2021-05-22 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Neel Yadav |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://neelyadav.com/ |
URL de la Page d'Aide | https://github.com/nlydv/atom-io-imgfix |
Langues Prises en Charge | 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" ] } ] } |