Dictionary to Notion

Saving Dicionary vocabularies to Notion, now supporting Oxford Learner's Dictionary and Cambridge Dictionary!

Dictionary to Notionคืออะไร?

Dictionary to Notion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย averageandy119 และคุณลักษณะหลักของมันคือ "Saving Dicionary vocabularies to Notion, now supporting Oxford Learner's Dictionary and Cambridge Dictionary!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dictionary to Notion

ดาวน์โหลดไฟล์ส่วนขยาย Dictionary to Notion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This plugin allows you to send Vocabulary data to your own Notion account. (Currently supporting Oxford Learner's Dictionary and Cambridge Dictionary!)
Setup:

1. Create an Notion Integration:
[Notion's guide on how to create an integration](https://www.notion.so/help/create-integrations-with-the-notion-api)
2. Copy the Internal Integration Secret
3. Duplicate this database to your own Notion: https://electric-mice-3d7.notion.site/Vocabularies-5808944f5d7846eb8a72a148aef42052?pvs=4
4. Add the Notion Integration into your duplicated database: [Notion's guide on how to connect your integrations](https://www.notion.so/help/add-and-manage-connections-with-the-api#add-connections-to-pages)
5. Find the database ID:
[Notion's guide on how to find the database ID](https://developers.notion.com/reference/retrieve-a-database)


You could copy the link to view and find the Database ID.

6. Click on the settings Icon and navigate to the settings dashboard, on the left hand side you will find the settings tab, enter your KEY and Database ID
7. You're good to go!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dictionary to Notion Dictionary to Notion
ID galpjmkjddpnaahipgeplbaeocpahohb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dictionary-to-notion/galpjmkjddpnaahipgeplbaeocpahohb
คำอธิบาย Saving Dicionary vocabularies to Notion, now supporting Oxford Learner's Dictionary and Cambridge Dictionary!
ขนาดไฟล์ 387 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 0.5.2
อัปเดตครั้งล่าสุด 2023-08-27
วันที่เผยแพร่ 2023-08-08
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา averageandy119
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/aaaallleen/Vocab-to-Notion
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dictionary to Notion",
    "version": "0.5.2",
    "description": "Saving Dicionary vocabularies to Notion, now supporting Oxford Learner's Dictionary and Cambridge Dictionary!",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/dictionary.cambridge.org\/dictionary\/english\/*",
        "https:\/\/*.oxfordlearnersdictionaries.com\/definition\/english\/*",
        "https:\/\/*.notion.so\/*",
        "https:\/\/*.notion.com\/*"
    ],
    "background": {
        "service_worker": "src\/background\/bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.oxfordlearnersdictionaries.com\/definition\/english\/*"
            ],
            "js": [
                "contentScript_oxford.js"
            ],
            "web_accessible_resources": [
                {
                    "resources": [
                        "icons\/send.png"
                    ],
                    "matches": [
                        "https:\/\/*.oxfordlearnersdictionaries.com\/*"
                    ]
                }
            ]
        },
        {
            "matches": [
                "https:\/\/dictionary.cambridge.org\/dictionary\/english\/*"
            ],
            "js": [
                "contentScript_cambridge.js"
            ],
            "web_accessible_resources": [
                {
                    "resources": [
                        "icons\/send.png"
                    ],
                    "matches": [
                        "https:\/\/dictionary.cambridge.org\/dictionary\/english\/*"
                    ]
                }
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/send.png"
            ],
            "matches": [
                "https:\/\/*.oxfordlearnersdictionaries.com\/*",
                "https:\/\/dictionary.cambridge.org\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/ext-icon.png",
            "24": "icons\/ext-icon.png",
            "32": "icons\/ext-icon.png"
        },
        "default_title": "Send Vocab to Notion",
        "default_popup": "src\/popup\/popup.html"
    },
    "manifest_version": 3
}