Google Ads "Add as Keyword" Match Type Helper

Add as keyword match type helper for google ads.

Was ist Google Ads "Add as Keyword" Match Type Helper?

Google Ads "Add as Keyword" Match Type Helper ist eine Chrome-Erweiterung, die von https://ignitemarketing.com entwickelt wurde, und ihr Hauptmerkmal ist "Add as keyword match type helper for google ads.".

Erweiterungsscreenshots

screenshot
screenshot

Google Ads "Add as Keyword" Match Type Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Ads "Add as Keyword" Match Type Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Google defaults your new keyword to Broad match when you add matched terms as keywords.

You can get the match type selector back.

Follow these 4 steps:

→ Install our Match Type Helper Chrome extension.
→ Review matched search terms in Google Ads.
→ Choose your desired match type: exact, phrase, or broad.
→ Bulk change match types for all matched terms before adding.


Details: 
Previously, Google Ads let you choose whether a new keyword should be "Exact," "Phrase," or "Broad" match directly when adding it from the matched search terms. Now, Google automatically sets new keywords as "Broad" match, and if you want "Exact" or "Phrase" match, you have to add extra symbols manually each time, which can be time-consuming and error-prone.

Our Google Ads extension addresses this issue. It allows you to:
→ Choose the match type for each keyword individually when adding matched search terms.
→ Change the match type for all matched terms in bulk before adding them.

This makes the process faster and reduces the likelihood of mistakes. 

Our extension works on your device and does not send your data to external servers or third parties.                    

Grundlegende Informationen zur Erweiterung

Name Google Ads Google Ads "Add as Keyword" Match Type Helper
ID lohkmkohhglpgndcmobnpiekmkobgdkp
Offizielle URL https://chromewebstore.google.com/detail/google-ads-add-as-keyword/lohkmkohhglpgndcmobnpiekmkobgdkp
Beschreibung Add as keyword match type helper for google ads.
Dateigröße 5.81 KB
Installationsanzahl 2,258
Aktuelle Version 1.0.6
Letztes Update 2024-03-02
Veröffentlichungsdatum 2022-09-13
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler https://ignitemarketing.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://ignitemarketing.com/google-ads-add-as-keyword-match-type-helper/
Hilfeseite URL https://ignitemarketing.com/contact/
URL der Datenschutzrichtlinien-Seite https://ignitemarketing.com/google-ads-add-as-keyword-match-type-helper
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Ads \"Add as Keyword\" Match Type Helper",
    "description": "Add as keyword match type helper for google ads.",
    "version": "1.0.6",
    "manifest_version": 3,
    "action": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/ads.google.com\/*",
                "http:\/\/ads.google.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ]
}