notion-icon-copy
copies to clipboard page icon url in Notion.
什么是notion-icon-copy?
notion-icon-copy是由aboy开发的Chrome扩展程序,该扩展的主要功能是“copies to clipboard page icon url in Notion.”。
扩展截图
下载notion-icon-copy扩展crx文件
下载notion-icon-copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | notion-icon-copy |
ID | gjbkcdmijbmknillkhndcgciaockijof |
官方URL | https://chromewebstore.google.com/detail/notion-icon-copy/gjbkcdmijbmknillkhndcgciaockijof |
简介 | copies to clipboard page icon url in Notion. |
文件大小 | 34.25 KB |
安装次数 | 57 |
当前版本 | 1.5 |
更新时间 | 2023-11-27 |
上架时间 | 2022-06-11 |
开发者 | aboy |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/YuyaAbo/notion-icon-copy |
支持的语言 | 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" ] } |