notion-icon-copy
copies to clipboard page icon url in Notion.
Vad är notion-icon-copy?
notion-icon-copy är en Chrome-tillägg utvecklad av aboy, och dess huvudfunktion är "copies to clipboard page icon url in Notion.".
Tilläggsskärmbilder
Ladda ner notion-icon-copy-förlängningens CRX-fil
Ladda ner notion-icon-copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | notion-icon-copy |
ID | gjbkcdmijbmknillkhndcgciaockijof |
Officiell webbadress | https://chromewebstore.google.com/detail/notion-icon-copy/gjbkcdmijbmknillkhndcgciaockijof |
Beskrivning | copies to clipboard page icon url in Notion. |
Filstorlek | 34.25 KB |
Antal Installationer | 57 |
Aktuell Version | 1.5 |
Senast Uppdaterad | 2023-11-27 |
Publiceringsdatum | 2022-06-11 |
Utvecklare | aboy |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/YuyaAbo/notion-icon-copy |
Stödda Språk | 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" ] } |