Extract People also search phrases in Google

Shows and adds all phrases from "People also search for" to the textarea in top right corner - so you can simply harvest them all.

Extract People also search phrases in Googleคืออะไร?

Extract People also search phrases in Google เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jakdelatseo.cz และคุณลักษณะหลักของมันคือ "Shows and adds all phrases from "People also search for" to the textarea in top right corner - so you can simply harvest them all."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extract People also search phrases in Google

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

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

                        This extension helps SEO folks, copywriters and others to find similar keywords in Google SERP by "hacking" the "People also search for" and colecting them in textarea in top right corner of search engine result page. So you can easily harvest them when searching at Google. Quite simple. :-)

It helps you to do brief keyword analysis for SEO and to find new similar keywords. 

Take a look at the screenshots.

More about "People also search for": https://searchengineland.com/google-launches-new-look-people-also-search-search-refinements-291918


Google uses to change HTML from time to time, so the extension might stop working. In this case, please, contact me at Twitter - @Neologyc, or at email - jaroslav at hlavinka.cz. It would help me a lot to keep extension working. Thank you in advance.


I´m Jaroslav Hlavinka - SEO consultant working for czech based search engine Seznam.cz. Take a look at my SEO useful stuff at https://github.com/neologyc .                    

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

ชื่อ Extract People also search phrases in Google Extract People also search phrases in Google
ID jepjhbfaflooeafdniebnnjfdpcdkejd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extract-people-also-searc/jepjhbfaflooeafdniebnnjfdpcdkejd
คำอธิบาย Shows and adds all phrases from "People also search for" to the textarea in top right corner - so you can simply harvest them all.
ขนาดไฟล์ 80.62 KB
จำนวนการติดตั้ง 38,877
เวอร์ชันปัจจุบัน 1.31
อัปเดตครั้งล่าสุด 2021-02-15
วันที่เผยแพร่ 2019-08-31
คะแนน 4.27/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา https://jakdelatseo.cz
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jakdelatseo.cz
URL หน้าช่วยเหลือ https://twitter.com/neologyc?lang=en
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extract People also search phrases in Google",
    "short_name": "People also search for SEO",
    "description": "Shows and adds all phrases from \"People also search for\" to the textarea in top right corner - so you can simply harvest them all.",
    "icons": {
        "16": "\/images\/icon16.png",
        "24": "\/images\/icon24.png",
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "version": "1.31",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/www.google.*\/*q=*",
                "*:\/\/encrypted.google.*\/*q=*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*tbm=lcl*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/css.css"
            ],
            "all_frames": true
        }
    ]
}