Notion Forms

Hide Notion widget border

What is Notion Forms?

Notion Forms is a Chrome extension developed by savetonotion.so, and its main feature is "Hide Notion widget border".

Extension Screenshots

screenshot

Download Notion Forms Extension CRX File

Download Notion Forms extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Notion Forms Notion Forms
ID lmlcnllajejljjffbfnpcmeldomdcfjn
Official URL https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn
Description Hide Notion widget border
File Size 16.99 KB
Installation Count 856
Current Version 0.0.1
Last Updated 2020-12-08
Publish Date 2020-12-08
Rating 5.00/5 Total 2 Ratings
Developer savetonotion.so
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec
Supported Languages 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'"
}