Notion Tweaks

For Notion. Development of this extension is in stop.

Notion Tweaks क्या है?

Notion Tweaks eetann द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "For Notion. Development of this extension is in stop."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion Tweaks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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