PAA Scrapper

Scrap PAA for some keywords

Что такое PAA Scrapper?

PAA Scrapper - это расширение Chrome, разработанное Tanzim, и его основная функция - "Scrap PAA for some keywords".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения PAA Scrapper

Скачайте файлы расширений PAA Scrapper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension will scrap PAA ( people also ask) from google search results. Users can provide questions or keywords here. It will split them by new line and search them one by one and download a CSV file containing the PAA Titles, Parent PAA, Text, URL, and URL Title for that PAA.

Owned by: Romain Pirotte 
👉www.youtube.com/@RomainPirotte                    

Основная информация о расширении

Название PAA Scrapper PAA Scrapper
ID ljhgoaahilgogahmklbpgggejoklcink
Официальный URL https://chromewebstore.google.com/detail/paa-scrapper/ljhgoaahilgogahmklbpgggejoklcink
Описание Scrap PAA for some keywords
Размер файла 30.31 KB
Количество установок 735
Текущая Версия 1.1.0
Последнее Обновление 2023-05-04
Дата публикации 2023-02-04
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Tanzim
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PAA Scrapper",
    "version": "1.1.0",
    "description": "Scrap PAA for some keywords",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "logo32.png"
        }
    },
    "icons": {
        "128": "logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "papaParse.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "manifest_version": 3,
    "permissions": [
        "storage"
    ]
}