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 là gì?

Atom.io — Image Fixer là một tiện ích mở rộng Chrome được phát triển bởi Neel Yadav, và tính năng chính của nó là "Just a few lines of javascript to fix all those broken image links on https://atom.io".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Atom.io — Image Fixer

Tải xuống các tệp mở rộng Atom.io — Image Fixer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Atom.io — Image Fixer Atom.io — Image Fixer
ID dckhejcdhaojgaafhjmeengkkilgejma
URL Chính Thức https://chromewebstore.google.com/detail/atomio-%E2%80%94-image-fixer/dckhejcdhaojgaafhjmeengkkilgejma
Mô tả Just a few lines of javascript to fix all those broken image links on https://atom.io
Kích Thước Tệp 22.14 KB
Số Lần Cài Đặt 426
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2021-10-10
Ngày Phát Hành 2021-05-22
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Neel Yadav
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://neelyadav.com/
URL Trang Trợ Giúp https://github.com/nlydv/atom-io-imgfix
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}