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”。
扩展截图
下载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 |
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" ] } ] } |