9Gag enhancer
Allows to download images
9Gag enhancerとは何ですか?
9Gag enhancerはhttps://mantas.appによって開発されたChromeの拡張機能で、その主な機能は「Allows to download images」です。
拡張機能のスクリーンショット
9Gag enhancer拡張機能のCRXファイルをダウンロード
9Gag enhancer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows to download 9gag.com images in .jpeg instead of .webp format. Underneath image on right side the is separate download icon for conveniently download image without hassle. Also, it modifies HTML so browser is forced to download ..jpeg file format when user clicks right mouse button on image. Video controls can be shown on videos and GIFs automatically. Videos can be set to auto play with sound. Triple clicking on empty space or quickly scrolling up and down at least four times, extension automatically opens predefined web page, if manager unexpectedly appears next to your table. Background and text colors can be customized. This still needs some (a lot) improvement. Quickly search and insert gifs or images from https://memeful.com/ to comments using new icon in comment box.
拡張機能の基本情報
名前 | 9Gag enhancer |
ID | onilkijoikplbmmjmeahnmffhpafcgai |
公式URL | https://chromewebstore.google.com/detail/9gag-enhancer/onilkijoikplbmmjmeahnmffhpafcgai |
説明 | Allows to download images |
ファイルサイズ | 210 KB |
インストール数 | 49 |
現在のバージョン | 1.3.3 |
最終更新日 | 2022-12-31 |
公開日 | 2020-08-05 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | https://mantas.app |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/piktasdiedas/9gagenhancer |
ヘルプページのURL | https://mantas.app |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "9Gag enhancer", "description": "Allows to download images", "version": "1.3.3", "icons": { "16": "images\/icons\/i_16.png", "24": "images\/icons\/i_24.png", "32": "images\/icons\/i_32.png", "128": "images\/icons\/i_128.png" }, "action": { "default_icon": { "16": "images\/icons\/i_16.png", "24": "images\/icons\/i_24.png", "32": "images\/icons\/i_32.png" }, "default_popup": "popup.html" }, "permissions": [ "storage", "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/9gag.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/*.*" ], "matches": [ "https:\/\/9gag.com\/*" ] } ] } |