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文件

下载Notion Tweaks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}