Notion.so Faster & Responsive Popup
Have a better notion.so experience, less transitions and responsiveness
Notion.so Faster & Responsive Popup란 무엇입니까?
Notion.so Faster & Responsive Popup은(는) Matheus Cezar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Have a better notion.so experience, less transitions and responsiveness"입니다.
확장 프로그램 스크린샷
Notion.so Faster & Responsive Popup 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features
✔ ONE CLICK OPENS POPUP
✔ WRAP LINES IN CARDS
✔ HIDE HELP BUTTON
✔ FASTER TRANSITIONS
✔ SMALL PADDING
✔ RESPONSIVE (transforms columns in rows at narrow resolutions and windows)
✔ NICE SCROOL BAR 확장 프로그램 기본 정보
| 이름 | |
| ID | leadcilhbmibbkgbnjgmmnfgnnhmeddk |
| 공식 URL | https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk |
| 설명 | Have a better notion.so experience, less transitions and responsiveness |
| 파일 크기 | 19.7 KB |
| 설치 횟수 | 3,000 |
| 현재 버전 | 1.7 |
| 최근 업데이트 | 2020-10-09 |
| 출시 날짜 | 2019-06-15 |
| 평점 | 5.00/5 총 9 개의 평점 |
| 개발자 | Matheus Cezar |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://matheuscezar.me/ |
| 도움말 페이지 URL | https://github.com/matheus6417/notion-so-responsive-popup/issues |
| 개인정보 보호 정책 페이지 URL | http://[email protected] |
| 지원되는 언어 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Notion.so Faster & Responsive Popup",
"version": "1.7",
"description": "Have a better notion.so experience, less transitions and responsiveness",
"manifest_version": 2,
"icons": {
"128": "icon.png",
"16": "icon.png",
"48": "icon.png"
},
"options_page": "options.html",
"permissions": [
"https:\/\/www.notion.so\/*",
"contextMenus"
],
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.notion.so\/*"
],
"js": [
"content-script.js"
],
"css": [
"content-style.css"
]
}
]
} | |