9Gag enhancer
Allows to download images
9Gag enhancer란 무엇입니까?
9Gag enhancer은(는) https://mantas.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to download images"입니다.
확장 프로그램 스크린샷
9Gag enhancer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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\/*" ] } ] } |