TwQuoteExport - Export X/Twitter Quotes

One click to export quote list of any x/twitter tweets to CSV/Excel/JSON. scrape and save x.com quotes.

TwQuoteExport - Export X/Twitter Quotesคืออะไร?

TwQuoteExport - Export X/Twitter Quotes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย allysonx และคุณลักษณะหลักของมันคือ "One click to export quote list of any x/twitter tweets to CSV/Excel/JSON. scrape and save x.com quotes."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TwQuoteExport - Export X/Twitter Quotes

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

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

                        Scrape and Extract quote list of any tweet, Save quote tweet content and user info list to CSV / Excel / JSON.

HOW TO USE?
1. Enter a X/Tweet link
2. Click the start button

🔥 Upgrade
✔︎ Support X.com and Twitter.com tweet links.
✔︎ Add websites, first name and last name fields. You can find emails with domain and name by some email hunters.

👋 FAQ
https://twquotesexport.extensionsfox.com/#faq
If you have any questions, please keep in touch via [email protected].

🔒 DATA PRIVACY
All data is processed in your local computer, never passing through our web server, and no one knows what you save.                    

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

ชื่อ TwQuoteExport - Export X/Twitter Quotes TwQuoteExport - Export X/Twitter Quotes
ID momebbjnpepjfdgnakekadenliadcooi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twquoteexport-export-xtwi/momebbjnpepjfdgnakekadenliadcooi
คำอธิบาย One click to export quote list of any x/twitter tweets to CSV/Excel/JSON. scrape and save x.com quotes.
ขนาดไฟล์ 1.1 MB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2023-12-05
วันที่เผยแพร่ 2023-07-19
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา allysonx
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://twquotesexport.extensionsfox.com
URL หน้านโยบายความเป็นส่วนตัว https://twdm.extensionsfox.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "1.0.4",
    "homepage_url": "https:\/\/twquotesexport.extensionsfox.com\/",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*"
    ],
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}