notion-icon-copy
copies to clipboard page icon url in Notion.
Co to jest notion-icon-copy?
notion-icon-copy to rozszerzenie Chrome opracowane przez aboy, a jego główną funkcją jest „copies to clipboard page icon url in Notion.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia notion-icon-copy
Pobierz pliki rozszerzeń notion-icon-copy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
notion-icon-copy copies to clipboard uploaded icon url in Notion. In Notion, to use an uploaded icon for an icon on another page, the page itself must be duplicated. This extension allows you to copy the URL of an uploaded icon to the clipboard and use it for an icon on another page.
Podstawowe informacje o rozszerzeniu
Nazwa | notion-icon-copy |
ID | gjbkcdmijbmknillkhndcgciaockijof |
Oficjalny URL | https://chromewebstore.google.com/detail/notion-icon-copy/gjbkcdmijbmknillkhndcgciaockijof |
Opis | copies to clipboard page icon url in Notion. |
Rozmiar pliku | 34.25 KB |
Liczba instalacji | 57 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2023-11-27 |
Data Publikacji | 2022-06-11 |
Deweloper | aboy |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/YuyaAbo/notion-icon-copy |
Obsługiwane Języki | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "notion-icon-copy", "description": "__MSG_Description__", "version": "1.5", "manifest_version": 3, "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "dist\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "dist\/content_script.js" ] } ], "permissions": [ "contextMenus" ] } |