Close Notion Tab
Automatically close Notion share link tabs after the desktop app opens.
Qu'est-ce que Close Notion Tab ?
Close Notion Tab est une extension Chrome développée par https://mskelton.dev, et sa fonction principale est "Automatically close Notion share link tabs after the desktop app opens.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Close Notion Tab
Téléchargez les fichiers d'extension Close Notion Tab 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
This extension will automatically close the active browser tab for Notion share links after they are opened in the desktop app.
Informations de Base sur l'Extension
Nom | Close Notion Tab |
ID | gnmlnelgpkmikakfkeejommjoknnlpjj |
URL Officiel | https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj |
Description | Automatically close Notion share link tabs after the desktop app opens. |
Taille du Fichier | 10.84 KB |
Nombre d'Installations | 92 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-03-27 |
Date de Publication | 2023-03-27 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://mskelton.dev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mskelton/close-notion-tab |
URL de la Page d'Aide | https://github.com/mskelton/close-notion-tab/issues |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Notion Tab", "description": "Automatically close Notion share link tabs after the desktop app opens.", "homepage_url": "https:\/\/github.com\/mskelton\/", "version": "1.0", "manifest_version": 3, "icons": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png" }, "background": { "service_worker": "js\/service-worker.js", "type": "module" }, "web_accessible_resources": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "resources": [ "js\/content.js" ] } ], "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "js\/content-script.js" ], "run_at": "document_end" } ] } |