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ファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}