Notion Forms

Hide Notion widget border

Was ist Notion Forms?

Notion Forms ist eine Chrome-Erweiterung, die von savetonotion.so entwickelt wurde, und ihr Hauptmerkmal ist "Hide Notion widget border".

Erweiterungsscreenshots

screenshot

Notion Forms-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion Forms-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        ≡ Features

* Hide Notion Widget border to put widgets inside Notion without noticing it
* Copy easily your Notion credentials by clicking on a button.

≡ Privacy

* The extension does NOT collect any data or send data to third party.                    

Grundlegende Informationen zur Erweiterung

Name Notion Forms Notion Forms
ID lmlcnllajejljjffbfnpcmeldomdcfjn
Offizielle URL https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn
Beschreibung Hide Notion widget border
Dateigröße 16.99 KB
Installationsanzahl 856
Aktuelle Version 0.0.1
Letztes Update 2020-12-08
Veröffentlichungsdatum 2020-12-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler savetonotion.so
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Forms",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Hide Notion widget border",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.notion.so\/*"
            ],
            "css": [],
            "js": [
                "src\/custom.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/*.notion.so\/*",
        "cookies"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_title": "Notion Forms"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'"
}