Notion Like Button
Embed Like Button into Notion
Notion Like Button क्या है?
Notion Like Button fujikky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Embed Like Button into Notion"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notion Like Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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" } |