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은(는) Neel Yadav에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Just a few lines of javascript to fix all those broken image links on https://atom.io"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Atom.io — Image Fixer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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/
도움말 페이지 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"
            ]
        }
    ]
}