Poe.com Resizer
Better layout for Poe.com and allow for resizable dialog area
Poe.com Resizer란 무엇입니까?
Poe.com Resizer은(는) Hayden Chiu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Better layout for Poe.com and allow for resizable dialog area"입니다.
확장 프로그램 스크린샷
Poe.com Resizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Poe.com Resizer is a Chrome extension that enables interactive resizing of the chat area on Poe.com. It also provide options on extension popup for hiding the scrollbars base on user preference on latest version of Chrome.
확장 프로그램 기본 정보
이름 | Poe.com Resizer |
ID | pkkdjnobfambcickbmbmpgejnelalmjo |
공식 URL | https://chromewebstore.google.com/detail/poecom-resizer/pkkdjnobfambcickbmbmpgejnelalmjo |
설명 | Better layout for Poe.com and allow for resizable dialog area |
파일 크기 | 17.93 KB |
설치 횟수 | 354 |
현재 버전 | 1.6.1 |
최근 업데이트 | 2024-02-28 |
출시 날짜 | 2023-05-28 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | Hayden Chiu |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.freeprivacypolicy.com/live/d062494e-dae6-4d19-868a-afbf63ea5c71 |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Poe.com Resizer", "version": "1.6.1", "description": "Better layout for Poe.com and allow for resizable dialog area", "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "96": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.poe.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "storage", "tabs" ], "web_accessible_resources": [ { "resources": [ "client.js" ], "matches": [ "https:\/\/*.poe.com\/*" ] } ] } |