Notion Tweaks

For Notion. Development of this extension is in stop.

Qu'est-ce que Notion Tweaks ?

Notion Tweaks est une extension Chrome développée par eetann, et sa fonction principale est "For Notion. Development of this extension is in stop.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Notion Tweaks

Téléchargez les fichiers d'extension Notion Tweaks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Notion Tweaks Notion Tweaks
ID fodemmhibeapiocbkojhfpbbiipojcof
URL Officiel https://chromewebstore.google.com/detail/notion-tweaks/fodemmhibeapiocbkojhfpbbiipojcof
Description For Notion. Development of this extension is in stop.
Taille du Fichier 129 KB
Nombre d'Installations 304
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-09-22
Date de Publication 2021-11-07
Évaluation 5.00/5 Total 1 Évaluations
Développeur eetann
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/eetann/notion-tweaks#readme
Langues Prises en Charge 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"
    }
}