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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Neel Yadav, και η κύρια λειτουργία του είναι "Just a few lines of javascript to fix all those broken image links on https://atom.io".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Atom.io — Image Fixer

Λήψη αρχείων επέκτασης Atom.io — Image Fixer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 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"
            ]
        }
    ]
}