Notion Tweaks

For Notion. Development of this extension is in stop.

Vad är Notion Tweaks?

Notion Tweaks är en Chrome-tillägg utvecklad av eetann, och dess huvudfunktion är "For Notion. Development of this extension is in stop.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Notion Tweaks-förlängningens CRX-fil

Ladda ner Notion Tweaks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Notion Tweaks Notion Tweaks
ID fodemmhibeapiocbkojhfpbbiipojcof
Officiell webbadress https://chromewebstore.google.com/detail/notion-tweaks/fodemmhibeapiocbkojhfpbbiipojcof
Beskrivning For Notion. Development of this extension is in stop.
Filstorlek 129 KB
Antal Installationer 304
Aktuell Version 1.0.1
Senast Uppdaterad 2022-09-22
Publiceringsdatum 2021-11-07
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare eetann
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/eetann/notion-tweaks#readme
Stödda Språk 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"
    }
}