Notion Like Button
Embed Like Button into Notion
ما هو Notion Like Button؟
Notion Like Button هو إضافة Chrome تم تطويرها بواسطة fujikky، والميزة الرئيسية لها هي "Embed Like Button into Notion".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Notion Like Button
قم بتنزيل ملفات الامتداد Notion Like Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Add a Like button to Notion. Use the Notion's API token set by the user. Only pages that have a "Like" field and are accessible to the API will display a like button.
معلومات أساسية عن التمديد
الاسم | Notion Like Button |
ID | dijaiapjgnkjknfoocnonoobnamcckbp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp |
الوصف | Embed Like Button into Notion |
حجم الملف | 70.88 KB |
عدد التثبيتات | 405 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2022-08-08 |
تاريخ النشر | 2022-02-02 |
المطور | fujikky |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/fujikky/notion-like-button |
عنوان صفحة المساعدة | https://zenn.dev/fujikky/articles/4e1471cd79ded9 |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "action": { "default_icon": { "38": "icon-38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "vendor.js", "content_script.js" ], "css": [ "content_script-styles.css" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "storage" ], "host_permissions": [ "https:\/\/api.notion.com\/*" ], "name": "Notion Like Button", "description": "Embed Like Button into Notion", "version": "1.2.0" } |