NotionX ( for Notion )

A Browser Extension that enhances Notion experience.

Что такое NotionX ( for Notion )?

NotionX ( for Notion ) - это расширение Chrome, разработанное https://scarsu.cn, и его основная функция - "A Browser Extension that enhances Notion experience.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения NotionX ( for Notion )

Скачайте файлы расширений NotionX ( for Notion ) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        NotionX is building for enhancing experience of Notion(notion.so) Web App, and try to keep it consistent with the cute native application UI style.

NotionX offers the following features:
√ Dynamic Table of Content  SideBar
√ Page Content statistics
√ Set All Code Block Language
√ Open current page in Notion desktop
√  Generate index for Header blocks
√  Enable/Disable button for NotionX
√  SideBar modules can be closed and restored
√  Hide Table block's 'New' button
√  Add ukrainian locale
√ Add a "scroll to top button" in the bottom right corner of the page
√ Show line numbers in code blocks
√ Low Contrast Dark Mode
√ Notion Shortcuts Quick Reference Manual
√ Support Multiple languages
√ Hide comments at the top of the page
√ Switching Notion dark mode
√ Compact Mode:full width + small text
√ Prevent table overflow
√ More Features on the way

Q: How to enable NotionX?
A: Install this extension ,open any address hosted as 'notion.so', and you will find buttons on the right hand side of the page header; The NotionX pop-up page can be found by clicking on the NotionX plugin icon on the right side of your browser address bar.

Want more features? suggest here: https://github.com/scarsu/NotionX/discussions/4

NotionX Homepage:
http://www.scarsu.cn/notionx/

Source Code:
https://github.com/scarsu/NotionX

This is a free and open-source browser extension. If you rating ★★★★★ I will devote more time to improving it, thanks~~~

NotionX是为了提升Notion(notion.so)Web App的体验而构建的,并尽量保持与可爱的原生应用UI风格一致。

在v2.1.0版本中,NotionX提供了以下功能。
√ 动态目录侧边栏
√ 页面内容统计
√ 一件设置所有代码块语言
√ 在Notion客户端中打开当前页面
√  为Header生成序号
√ 插件启用/禁用按钮NotionX
√  SideBar模块可以关闭/恢复
√  隐藏Table的'New'按钮
√  ukrainian语言
√ “滚动至顶部”按钮
√ 显示代码行号
√ 低对比度暗黑模式
√ Notion快捷键&命令速查
√ 插件多语言
√ 隐藏页首评论
√ 切换Notion暗黑模式
√ 紧凑模式:full width + small text
√ 阻止表格溢出
√ 持续更新…

问:如何启用NotionX?
答:安装这个扩展,打开任何一个主机为 "notion.so"的网址,你会找到位于页面头部右侧的按钮;在浏览器地址栏右侧点击NotionX插件图标,可以找到NotionX的弹出页面。

想要更多的功能,请在这里建议:https://github.com/scarsu/NotionX/discussions/4

NotionX 首页:
http://www.scarsu.cn/notionx/

源代码:
https://github.com/scarsu/NotionX

这是一个免费开源的浏览器扩展。如果你能评价五颗星★★★★★,我会投入更多的时间去完善它,3qqqqq~~~。                    

Основная информация о расширении

Название NotionX ( for Notion ) NotionX ( for Notion )
ID ojnlojnakahpmkbpigmjhcgibccnidpk
Официальный URL https://chromewebstore.google.com/detail/notionx-for-notion/ojnlojnakahpmkbpigmjhcgibccnidpk
Описание A Browser Extension that enhances Notion experience.
Размер файла 5.02 MB
Количество установок 10,203
Текущая Версия 2.1.3
Последнее Обновление 2021-08-06
Дата публикации 2020-12-14
Рейтинг 4.80/5 Всего 15 оценок
Разработчик https://scarsu.cn
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.scarsu.cn/notionx/
URL страницы помощи http://www.scarsu.cn/notionx/
URL страницы политики конфиденциальности http://www.scarsu.cn/notionx/privacy.html
Поддерживаемые языки en,uk,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NotionX ( for Notion )",
    "homepage_url": "http:\/\/scarsu.cn\/notionx\/",
    "description": "A Browser Extension that enhances Notion experience.",
    "default_locale": "en",
    "permissions": [
        "https:\/\/*.notion.so\/*"
    ],
    "icons": {
        "16": "icons\/notionx-white.png",
        "48": "icons\/notionx-white.png",
        "128": "icons\/notionx-white.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.notion.so\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "css": [
                "css\/content-script.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "NotionX ( for Notion )",
        "default_icon": {
            "19": "icons\/notionx-white.png",
            "38": "icons\/notionx-white.png"
        }
    },
    "version": "2.1.3",
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}