Easily Custom Page Zoom
Each website (or all websites) may be set with a unique zoom level easily.
Easily Custom Page Zoom란 무엇입니까?
Easily Custom Page Zoom은(는) christianhilton64에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Each website (or all websites) may be set with a unique zoom level easily."입니다.
확장 프로그램 스크린샷
Easily Custom Page Zoom 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
"Easily Custom Page Zoom" provides you with the option to establish various zoom levels for each website. Furthermore, you can change the X and Y position of each page. Features: - The toolbar popup window can be used to set custom zoom levels for each website. - You can set each page's position using the X and Y positions, and save the settings for individual pages using the save button. - You can also delete each setting by clicking on the close (x) button. - To turn the Addon ON or OFF, you can use two separate buttons at the popup UI. - A "*" can also be used to set a specific level of zoom for all websites.
확장 프로그램 기본 정보
이름 | Easily Custom Page Zoom |
ID | blnignndbniflpdkkhmbjcombmfdjgak |
공식 URL | https://chromewebstore.google.com/detail/easily-custom-page-zoom/blnignndbniflpdkkhmbjcombmfdjgak |
설명 | Each website (or all websites) may be set with a unique zoom level easily. |
파일 크기 | 67.02 KB |
설치 횟수 | 165 |
현재 버전 | 0.1 |
최근 업데이트 | 2022-05-30 |
출시 날짜 | 2022-05-30 |
평점 | 4.97/5 총 38 개의 평점 |
개발자 | christianhilton64 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://worldaddons.com/custom-page-zoom/ |
도움말 페이지 URL | https://worldaddons.com/contact/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1", "manifest_version": 3, "offline_enabled": true, "name": "Easily Custom Page Zoom", "short_name": "custom-page-zoom", "permissions": [ "storage", "activeTab" ], "homepage_url": "https:\/\/worldaddons.com\/custom-page-zoom\/", "description": "Each website (or all websites) may be set with a unique zoom level easily.", "background": { "service_worker": "background.js" }, "action": { "default_title": "Easily Custom Page Zoom", "default_popup": "source\/popup\/popup.html", "default_icon": { "16": "source\/icons\/16.png", "32": "source\/icons\/32.png", "48": "source\/icons\/48.png", "64": "source\/icons\/64.png" } }, "content_scripts": [ { "all_frames": false, "matches": [ "*:\/\/*\/*" ], "match_about_blank": true, "run_at": "document_start", "js": [ "source\/content_script\/inject.js" ] } ], "icons": { "16": "source\/icons\/16.png", "32": "source\/icons\/32.png", "48": "source\/icons\/48.png", "64": "source\/icons\/64.png", "128": "source\/icons\/128.png" } } |