Notion Tweet Preview
Preview Twitter tweets and threads in Notion
Notion Tweet Previewคืออะไร?
Notion Tweet Preview เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://devapt.com และคุณลักษณะหลักของมันคือ "Preview Twitter tweets and threads in Notion"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Tweet Preview
ดาวน์โหลดไฟล์ส่วนขยาย Notion Tweet Preview ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
•❅─────────✧❅ 𝗡𝗼𝘁𝗶𝗼𝗻 𝗧𝘄𝗲𝗲𝘁 𝗣𝗿𝗲𝘃𝗶𝗲𝘄 ❅✧─────────❅• Notion Tweet Preview extension helps to preview your tweets and threads right inside the Notion. This helps you to keep a track of the character count for each tweet in a thread. 𝗙𝗲𝗮𝘁𝘂𝗿𝗲𝘀 📌: 1. Manual preview 2. Auto preview for database pages To get started install the extension and visit your Notion page on browser and then click 𝗦𝗵𝗼𝘄 𝗽𝗿𝗲𝘃𝗶𝗲𝘄 button from the extension popup. That's it you will find the preview of your tweet text. Make sure you are on the page of the Notion, not on table or some other views. 𝗡𝗼𝘁𝗲𝘀 📢: 1. This works completely inside your browser without interacting with outside resources 2. If the preview doesn't update automatically, there's a reload button on top right of the preview to reload. 3. Auto preview works only for the database pages. Manual preview works for any type of page. If you liked this extension you can support me by buying a coffee. This helps to keep updating and developing more such interesting tools. 🥤 𝗕𝘂𝘆 𝗺𝗲 𝗮 𝗰𝗼𝗳𝗳𝗲𝗲 → https://www.buymeacoffee.com/basharath
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Notion Tweet Preview |
ID | bmngbhaoelgififonanjdadhmomclcfo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/notion-tweet-preview/bmngbhaoelgififonanjdadhmomclcfo |
คำอธิบาย | Preview Twitter tweets and threads in Notion |
ขนาดไฟล์ | 37.68 KB |
จำนวนการติดตั้ง | 109 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2022-11-28 |
วันที่เผยแพร่ | 2022-11-03 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://devapt.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://basharath.notion.site/basharath/Privacy-policy-f883e35b01194f22874696119dac4f44 |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Notion Tweet Preview", "version": "0.1.0", "description": "Preview Twitter tweets and threads in Notion", "permissions": [ "storage", "tabs" ], "action": { "default_icon": "images\/logo.png", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.com\/*", "https:\/\/www.notion.so\/*" ], "js": [ "content.js" ], "css": [ "style.css" ], "run_at": "document_start" } ], "icons": { "16": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" }, "short_name": "NTP" } |