Gatry Night Mode
Turn off the Gatry lights!
Gatry Night Mode란 무엇입니까?
Gatry Night Mode은(는) https://moraisandre.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn off the Gatry lights!"입니다.
확장 프로그램 스크린샷
Gatry Night Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
[PT-BR] Extensão feita para adicionar o modo noturno no site de promoções www.gatry.com [EN-US] Extension made to add night mode in Gatry's Website
확장 프로그램 기본 정보
이름 | Gatry Night Mode |
ID | biikdmnllamcecdchhjgiiaakjnmaoma |
공식 URL | https://chromewebstore.google.com/detail/gatry-night-mode/biikdmnllamcecdchhjgiiaakjnmaoma |
설명 | Turn off the Gatry lights! |
파일 크기 | 3.12 MB |
설치 횟수 | 80 |
현재 버전 | 1.3 |
최근 업데이트 | 2021-12-01 |
출시 날짜 | 2018-09-04 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://moraisandre.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://moraisandre.com/ |
도움말 페이지 URL | http://moraisandre.com/night-night-mode/ |
지원되는 언어 | pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gatry Night Mode", "description": "Turn off the Gatry lights!", "version": "1.3", "omnibox": { "keyword": "gatry" }, "icons": { "16": "icons\/gatry_icon16.png", "48": "icons\/gatry_icon48.png", "128": "icons\/gatry_icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/gatry_icon48.png", "default_title": "Gatry Night Mode" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/gatry.com\/*" ], "js": [ "js\/replace-css.js" ], "all_frames": true } ], "web_accessible_resources": [ "images\/*.png", "css\/night-mode.css" ], "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'" } |