Notion Forms
Hide Notion widget border
Wat is Notion Forms?
Notion Forms is een Chrome-extensie ontwikkeld door savetonotion.so, en de belangrijkste functie is "Hide Notion widget border".
Extensie Screenshots
Download het CRX-bestand van de extensie Notion Forms
Download Notion Forms-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
≡ 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.
Basisinformatie over de Extensie
Naam | |
ID | lmlcnllajejljjffbfnpcmeldomdcfjn |
Officiële URL | https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn |
Beschrijving | Hide Notion widget border |
Bestandsgrootte | 16.99 KB |
Aantal Installaties | 856 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2020-12-08 |
Publicatiedatum | 2020-12-08 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | savetonotion.so |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Ondersteunde Talen | 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'" } |