notion-icon-copy
copies to clipboard page icon url in Notion.
What is notion-icon-copy?
notion-icon-copy is a Chrome extension developed by aboy, and its main feature is "copies to clipboard page icon url in Notion.".
Extension Screenshots
Download notion-icon-copy Extension CRX File
Download notion-icon-copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | notion-icon-copy |
ID | gjbkcdmijbmknillkhndcgciaockijof |
Official URL | https://chromewebstore.google.com/detail/notion-icon-copy/gjbkcdmijbmknillkhndcgciaockijof |
Description | copies to clipboard page icon url in Notion. |
File Size | 34.25 KB |
Installation Count | 57 |
Current Version | 1.5 |
Last Updated | 2023-11-27 |
Publish Date | 2022-06-11 |
Developer | aboy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/YuyaAbo/notion-icon-copy |
Supported Languages | 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" ] } |