Notion Helper

An extension to enhance your experience with Notion

Notion Helper란 무엇입니까?

Notion Helper은(는) meshkani.mo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to enhance your experience with Notion"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Features:
- RTL
- Custom Font (Type in the name of the font you want. Make sure that the font is installed on your computer)

If you need any other features that are missing, let me know in the comments.                    

확장 프로그램 기본 정보

이름 Notion Helper Notion Helper
ID jckgilkkfgibbeokglganbfdipcblibd
공식 URL https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd
설명 An extension to enhance your experience with Notion
파일 크기 47.12 KB
설치 횟수 2,208
현재 버전 1.0.1
최근 업데이트 2021-10-01
출시 날짜 2021-09-23
평점 5.00/5 총 29 개의 평점
개발자 meshkani.mo
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Helper",
    "version": "1.0.1",
    "description": "An extension to enhance your experience with Notion",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/*.notion.so\/*",
        "*:\/\/*.notion.site\/*"
    ],
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "32": "\/logo\/logo-32.png",
            "48": "\/logo\/logo-48.png",
            "128": "\/logo\/logo-128.png"
        }
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.notion.so\/*",
                "*:\/\/*.notion.site\/*"
            ],
            "js": [
                "src\/scripts\/rtl.js",
                "src\/scripts\/font.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "32": "\/logo\/logo-32.png",
        "48": "\/logo\/logo-48.png",
        "128": "\/logo\/logo-128.png"
    }
}