Keyword Planner

Keyword Planner expands the number of search suggestions shown in the Google™, YouTube™, Amazon™, eBay™ and Etsy™ search bars.

Τι είναι το Keyword Planner;

Το Keyword Planner είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://keywordplanner.net, και η κύρια λειτουργία του είναι "Keyword Planner expands the number of search suggestions shown in the Google™, YouTube™, Amazon™, eBay™ and Etsy™ search bars.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Keyword Planner

Λήψη αρχείων επέκτασης Keyword Planner σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Keyword Planner uses the Google™, YouTube™, Amazon™, eBay™ and Etsy™ Suggest APIs to show you useful keywords related to your search query right under the search box.

It also integrates with third party APIs to show you search volume data for these keywords.

Instructions to use

1. Install the chrome extension

2. Go to any of the supported websites - Google™ YouTube™, Amazon™, eBay™ or Etsy™ and perform a search

3. Inside the text box, on the right hand side you will see a new button with the Keyword Planner logo.

4. Click the button, and you will see multiple lists of keywords show up right underneath the search bar.

Change log for the keyword planner chrome extension

v0.0.23 (18th Feb 2024)
- Rewrote the entire codebase to remove Svelte dependancy
- Fixed issue with all websites where the keywords widgets would not show up

v0.0.22 (14th August 2022)
- Fixed issue with duplicate keywords
- Changed extension summary to include other supported websites

v0.0.19 (10th August 2022)
- Support for YouTube™, Amazon™, eBay™ and Etsy™

v0.0.14 (25th July 2022)
- Support for Google dark theme 
- Bug fixing

v0.0.9 (6th July 2022)
- First release                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Keyword Planner Keyword Planner
ID ohffmmbmebhcljgcdijjlepjaoladfag
Επίσημο URL https://chromewebstore.google.com/detail/keyword-planner/ohffmmbmebhcljgcdijjlepjaoladfag
Περιγραφή Keyword Planner expands the number of search suggestions shown in the Google™, YouTube™, Amazon™, eBay™ and Etsy™ search bars.
Μέγεθος Αρχείου 114 KB
Αριθμός Εγκαταστάσεων 34,619
Τρέχουσα Έκδοση 0.0.23
Τελευταία Ενημέρωση 2024-02-19
Ημερομηνία Δημοσίευσης 2022-07-06
Αξιολόγηση 2.93/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής https://keywordplanner.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://keywordplanner.net/
Διεύθυνση URL της Σελίδας Βοήθειας https://keywordplanner.net/support
URL της Σελίδας Πολιτικής Απορρήτου https://seominion.com/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyword Planner",
    "description": "Keyword Planner expands the number of search suggestions shown in the Google\u2122, YouTube\u2122, Amazon\u2122, eBay\u2122 and Etsy\u2122 search bars.",
    "manifest_version": 3,
    "version": "0.0.23",
    "background": {
        "service_worker": "background\/sw.js"
    },
    "content_scripts": [
        {
            "js": [
                "\/lib\/jquery-3.6.0.min.js",
                "\/lib\/utils.js",
                "\/lib\/keywordsEverywhere.js",
                "\/lib\/search\/Amazon.js",
                "\/lib\/search\/Bing.js",
                "\/lib\/search\/Ebay.js",
                "\/lib\/search\/Etsy.js",
                "\/lib\/search\/Google.js",
                "\/lib\/search\/YouTube.js",
                "\/lib\/search\/index.js",
                "\/content\/components\/Keyword.js",
                "\/content\/Content.js",
                "\/content\/google\/index.js",
                "\/content\/youtube\/index.js",
                "\/content\/amazon\/index.js",
                "\/content\/bing\/index.js",
                "\/content\/etsy\/index.js",
                "\/content\/ebay\/index.js",
                "\/content\/index.js"
            ],
            "css": [
                "\/content\/youtube\/index.css",
                "\/content\/amazon\/index.css",
                "\/content\/etsy\/index.css",
                "\/content\/ebay\/index.css",
                "\/content\/content.css"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": [],
    "options_page": "options\/index.html",
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png",
        "512": "assets\/icons\/512.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/icons\/32.png",
                "assets\/loader.svg"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}