Artist Tools for Gartic Phone
Enhance the gartic phone experience with additional colors
Artist Tools for Gartic Phone란 무엇입니까?
Artist Tools for Gartic Phone은(는) SillyV에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhance the gartic phone experience with additional colors"입니다.
확장 프로그램 스크린샷
Artist Tools for Gartic Phone 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension provides additional tools that supplememnt the existing tools of gartic phone. ========================== Features: Extended color pallete Color history pallete (all colors that were manually picked with the color picker will be added here, right click to remove) Canvas watermark is hidden while drawing. Editable Keybindings. Accessible eye dropper tool Sketch Layer - move sketch layer above or below the canvas. add additional data to sketch layer transform, move, resize, flip, mirror the sketch layer save and restore gartic drawings between sessions Grid - add a grid above the canvas for assistance with percision
확장 프로그램 기본 정보
이름 | Artist Tools for Gartic Phone |
ID | jimdddbdlngpncjdbfggmjieegcnjcbd |
공식 URL | https://chromewebstore.google.com/detail/artist-tools-for-gartic-p/jimdddbdlngpncjdbfggmjieegcnjcbd |
설명 | Enhance the gartic phone experience with additional colors |
파일 크기 | 40.6 KB |
설치 횟수 | 3,330 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2023-10-13 |
출시 날짜 | 2022-10-13 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | SillyV |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Artist Tools for Gartic Phone", "version": "1.2.1", "description": "Enhance the gartic phone experience with additional colors", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "pages\/background.js" }, "content_scripts": [ { "css": [ "pages\/colors.css", "components\/artist_settings.css" ], "js": [ "components\/language.js", "components\/storage.js", "components\/paletteCollections.js", "components\/artist_settings.js", "components\/artist_settings_palettes.js", "components\/artist_settings_create_palette.js", "pages\/draw.js", "pages\/main.js" ], "matches": [ "https:\/\/garticphone.com\/*", "https:\/\/beta.garticphone.com\/*" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |