Web2Markdown

Export any web content to Markdown format

Web2Markdownคืออะไร?

Web2Markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chatopenai.pro และคุณลักษณะหลักของมันคือ "Export any web content to Markdown format"

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

screenshot
screenshot
screenshot

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

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

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

                        🚀Description:
You can convert the content of the current page into Markdown format with just a click while browsing. This conversion retains the text, headings, links, images, and other elements of the web page, enabling you to save and share website content in a concise and readable manner.

💪Supported sites:
Supports almost all blog sites. Most websites will use a common parsing method, but some websites must be specially processed to export normal Markdown text. For example the following sites

1. chat.openai.com
2. notion.site
3. medium.com
4. dev.to
5. zhuanlan.zhihu.com

If there is a problem with the analysis of the website you visit, please give me feedback in time.

⚒️Usage:
1. Click the extensions icon on the right side of the browser address bar, find Web2Markdown in the drop-down list, and pin it
2. Find the pinned Web2Markdown on the right side of the browser address, click to pop up a card
3. The converted Markdown text will be displayed immediately on the interface, you can copy or download it
4. Whether to insert metadata in the sidebar setting

⏰Feedback:
For more tutorials, please visit: https://chatopenai.pro/web2markdown/.
If you have any questions or needs, please contact me in time by email [email protected]                    

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

ชื่อ Web2Markdown Web2Markdown
ID olnlijgcdflbdkcmhomlnldhcobopeeh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web2markdown/olnlijgcdflbdkcmhomlnldhcobopeeh
คำอธิบาย Export any web content to Markdown format
ขนาดไฟล์ 179 KB
จำนวนการติดตั้ง 79
เวอร์ชันปัจจุบัน 1.5.0
อัปเดตครั้งล่าสุด 2023-08-10
วันที่เผยแพร่ 2023-06-08
ผู้พัฒนา https://chatopenai.pro
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://chatopenai.pro/
URL หน้าช่วยเหลือ https://chatopenai.pro/
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/copy-csdn-privacy-policy/home
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Export any web content to Markdown format",
    "version": "1.5.0",
    "manifest_version": 3,
    "name": "Web2Markdown",
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        {
            "identity": [
                "email"
            ]
        }
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.notion.site\/*"
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-48.png",
                "icon-16.png"
            ],
            "matches": []
        },
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                "*:\/\/*.notion.site\/*"
            ]
        }
    ]
}