Transparent Standalone Images
This add-on renders standalone images on a transparent background, so you can see the image in all its glory!
Transparent Standalone Imagesとは何ですか?
Transparent Standalone ImagesはAymr Hraesvelgrによって開発されたChromeの拡張機能で、その主な機能は「This add-on renders standalone images on a transparent background, so you can see the image in all its glory!」です。
拡張機能のスクリーンショット
Transparent Standalone Images拡張機能のCRXファイルをダウンロード
Transparent Standalone Images拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
In Chrome all standalone image pages (for example, when you right-click and choose "View Image"), show their image on a white background. This is good for images that were created with the expectation that they would be viewed on a white background. However, most people who take care with the images that they create don't make this silly mistake. With this add-on installed, you won't have to see that ugly white background behind your transparent images. Now your images will be rendered against the black background, making it easier to see where the transparency starts and begins.
拡張機能の基本情報
名前 | Transparent Standalone Images |
ID | inmelfailofaofnfdjdkljfchjhogbmh |
公式URL | https://chromewebstore.google.com/detail/transparent-standalone-im/inmelfailofaofnfdjdkljfchjhogbmh |
説明 | This add-on renders standalone images on a transparent background, so you can see the image in all its glory! |
ファイルサイズ | 33.88 KB |
インストール数 | 1,509 |
現在のバージョン | 2.2 |
最終更新日 | 2023-12-05 |
公開日 | 2021-02-16 |
評価 | 4.27/5 合計 11 レビュー |
開発者 | Aymr Hraesvelgr |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Transparent Standalone Images", "version": "2.2", "description": "This add-on renders standalone images on a transparent background, so you can see the image in all its glory!", "icons": { "64": "appearance-64.png" }, "background": { "service_worker": "background.js" }, "host_permissions": [], "content_scripts": [ { "matches": [ "file:\/\/\/*", "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "transparent_image.css" ] } ] } |