Notion Tweaks

For Notion. Development of this extension is in stop.

Notion Tweaks란 무엇입니까?

Notion Tweaks은(는) eetann에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For Notion. Development of this extension is in stop."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Notion Tweaks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Development of this extension has been discontinued and is deprecated.

Chrome Extension to tweak Notion.

Features
・Open or Create Today's Page of a specific database
・Create Page of a specific database quickly
・Enter the timestamp(HH:mm) quickly
・Close Slash command menu and Emoji menu
・Narrow the page margins when page width is less than 850px
・Narrow the margin at the bottom of Code Block
・Always show the language of Code Block

🏠 https://github.com/eetann/notion-tweaks#readme                    

확장 프로그램 기본 정보

이름 Notion Tweaks Notion Tweaks
ID fodemmhibeapiocbkojhfpbbiipojcof
공식 URL https://chromewebstore.google.com/detail/notion-tweaks/fodemmhibeapiocbkojhfpbbiipojcof
설명 For Notion. Development of this extension is in stop.
파일 크기 129 KB
설치 횟수 304
현재 버전 1.0.1
최근 업데이트 2022-09-22
출시 날짜 2021-11-07
평점 5.00/5 총 1 개의 평점
개발자 eetann
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/eetann/notion-tweaks#readme
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Tweaks",
    "version": "1.0.1",
    "description": "For Notion. Development of this extension is in stop.",
    "author": "eetann",
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "host_permissions": [
        "https:\/\/script.google.com\/",
        "https:\/\/script.googleusercontent.com\/",
        "https:\/\/api.notion.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "commands": {
        "today": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "global": true,
            "description": "Open today page."
        }
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js",
                "chunk.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}