Notion Forms

Hide Notion widget border

Qu'est-ce que Notion Forms ?

Notion Forms est une extension Chrome développée par savetonotion.so, et sa fonction principale est "Hide Notion widget border".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Notion Forms 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

                        ≡ 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.                    

Informations de Base sur l'Extension

Nom Notion Forms Notion Forms
ID lmlcnllajejljjffbfnpcmeldomdcfjn
URL Officiel https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn
Description Hide Notion widget border
Taille du Fichier 16.99 KB
Nombre d'Installations 856
Version Actuelle 0.0.1
Dernière Mise à Jour 2020-12-08
Date de Publication 2020-12-08
Évaluation 5.00/5 Total 2 Évaluations
Développeur savetonotion.so
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
Langues Prises en Charge 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'"
}