Text Extractor

Copy relevant text content from webpages

ما هو Text Extractor؟

Text Extractor هو إضافة Chrome تم تطويرها بواسطة https://businesssoluter.com، والميزة الرئيسية لها هي "Copy relevant text content from webpages".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Text Extractor

قم بتنزيل ملفات الامتداد Text Extractor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Extract Body Text of any web page                    

معلومات أساسية عن التمديد

الاسم Text Extractor Text Extractor
ID agokeolklhaaflhfidpfmohicpolgjdd
عنوان URL الرسمي https://chromewebstore.google.com/detail/text-extractor/agokeolklhaaflhfidpfmohicpolgjdd
الوصف Copy relevant text content from webpages
حجم الملف 17.61 KB
عدد التثبيتات 48
النسخة الحالية 1.0
آخر تحديث 2023-05-24
تاريخ النشر 2023-05-24
المطور https://businesssoluter.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://backlinks.tools/
عنوان صفحة المساعدة https://backlinks.tools/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Extractor",
    "version": "1.0",
    "description": "Copy relevant text content from webpages",
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}