notion-icon-copy
copies to clipboard page icon url in Notion.
notion-icon-copyคืออะไร?
notion-icon-copy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aboy และคุณลักษณะหลักของมันคือ "copies to clipboard page icon url in Notion."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย notion-icon-copy
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |