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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}