Feather AI

Create high-quality blog posts in minutes with AI - right within Notion.

Feather AIคืออะไร?

Feather AI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://feather.so และคุณลักษณะหลักของมันคือ "Create high-quality blog posts in minutes with AI - right within Notion."

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feather AI

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

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

                        Feather AI is an AI assistant to help you with writing blog content inside Notion.

You don't need to use multiple tools to create the first draft of your blog post. 

Use Feather AI extension with Notion & do everything right there in one place!

Easy slash commands to accomplish what you exactly want:

/outline -> Generate the blog post outline based on the Notion page title.

/points -> Create some starting points based on each outline text.

/expand -> Expand to write in-depth content for that selected point.

/complete -> Complete the expanded paragraph with some conclusion or a takeaway.

Overcome your writer’s block & do more in less time.
1. Install the extension from the Chrome web store.
2. Make a new Notion page with the topic name as a title.
3. Get 4 new Notion commands & use them to create your first draft.


No more staring at the blank page.

Install Feather AI today.                    

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

ชื่อ Feather AI Feather AI
ID eeppffnebglddapdnkfgmgglighafpoh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/feather-ai/eeppffnebglddapdnkfgmgglighafpoh
คำอธิบาย Create high-quality blog posts in minutes with AI - right within Notion.
ขนาดไฟล์ 192 KB
จำนวนการติดตั้ง 435
เวอร์ชันปัจจุบัน 0.0.0.8
อัปเดตครั้งล่าสุด 2022-11-28
วันที่เผยแพร่ 2022-11-15
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://feather.so
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://feather.so/ai
URL หน้าช่วยเหลือ https://feather.so/ai
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Feather AI",
    "version": "0.0.0.8",
    "description": "Create high-quality blog posts in minutes with AI - right within Notion.",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "feather-white-bg-128.png"
    },
    "icons": {
        "128": "feather-white-bg-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*",
                "https:\/\/api.feather.so\/api\/ai\/*"
            ],
            "run_at": "document_end",
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ]
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "icon-128.png",
                "icon-34.png",
                "feather-white-bg.png",
                "feather-white-bg-128.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "clipboardRead",
        "storage"
    ]
}