Close Notion Tab
Automatically close Notion share link tabs after the desktop app opens.
Hvad er Close Notion Tab?
Close Notion Tab er en Chrome-udvidelse udviklet af https://mskelton.dev, og dens hovedfunktion er "Automatically close Notion share link tabs after the desktop app opens.".
Udvidelsesskærmbilleder
Download Close Notion Tab-udvidelses-CRX-fil
Download Close Notion Tab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension will automatically close the active browser tab for Notion share links after they are opened in the desktop app.
Grundlæggende oplysninger om udvidelsen
Navn | Close Notion Tab |
ID | gnmlnelgpkmikakfkeejommjoknnlpjj |
Officiel URL | https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj |
Beskrivelse | Automatically close Notion share link tabs after the desktop app opens. |
Filstørrelse | 10.84 KB |
Antal Installationer | 92 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-03-27 |
Udgivelsesdato | 2023-03-27 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://mskelton.dev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/mskelton/close-notion-tab |
Hjælpeside-URL | https://github.com/mskelton/close-notion-tab/issues |
Understøttede Sprog | 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" } ] } |