Close Notion Tab
Automatically close Notion share link tabs after the desktop app opens.
Co je Close Notion Tab?
Close Notion Tab je rozšíření Chrome vyvinuté https://mskelton.dev, a jeho hlavní funkcí je „Automatically close Notion share link tabs after the desktop app opens.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Close Notion Tab
Stáhněte si soubory rozšíření Close Notion Tab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension will automatically close the active browser tab for Notion share links after they are opened in the desktop app.
Základní Informace o Rozšíření
Název | Close Notion Tab |
ID | gnmlnelgpkmikakfkeejommjoknnlpjj |
Oficiální URL | https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj |
Popis | Automatically close Notion share link tabs after the desktop app opens. |
Velikost souboru | 10.84 KB |
Počet instalací | 92 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2023-03-27 |
Datum Vydání | 2023-03-27 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | https://mskelton.dev |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/mskelton/close-notion-tab |
URL Stránky Nápovědy | https://github.com/mskelton/close-notion-tab/issues |
Podporované Jazyky | 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" } ] } |