Better IFTTT UI
Makes the IFTTT UI more usable on desktop
Better IFTTT UI란 무엇입니까?
Better IFTTT UI은(는) burkybang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes the IFTTT UI more usable on desktop"입니다.
확장 프로그램 스크린샷
Better IFTTT UI 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a work in progress to make the IFTTT UI better on desktop. This project is open source. If you'd like to contribute, please do so. I would love for this to be a community project. Some Significant Modifications: - Everything is smaller - Header bar is fixed to the top of the screen while scrolling - Navigation menu is always visible and expanded horizontally across header - Some buttons such as Back and Settings are also fixed while scrolling Source Code: https://github.com/burkybang/Better-IFTTT-UI Firefox Version: https://addons.mozilla.org/en-US/firefox/addon/better-ifttt-ui
확장 프로그램 기본 정보
이름 | |
ID | diopohabmpmmpdabhghdpjnkhlicfjnp |
공식 URL | https://chrome.google.com/webstore/detail/better-ifttt-ui/diopohabmpmmpdabhghdpjnkhlicfjnp |
설명 | Makes the IFTTT UI more usable on desktop |
파일 크기 | 12.51 KB |
설치 횟수 | 480 |
현재 버전 | 1.7.1 |
최근 업데이트 | 2020-01-09 |
출시 날짜 | 2020-01-04 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | burkybang |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://burkybang.com/extensions/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better IFTTT UI", "version": "1.7.1", "description": "Makes the IFTTT UI more usable on desktop", "manifest_version": 2, "permissions": [ "tabs", "https:\/\/*.ifttt.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.ifttt.com\/*" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "css\/*" ], "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } } |