SEO helper

helps with tasks like seeing if a page is indexable

Apa itu SEO helper?

SEO helper adalah ekstensi Chrome yang dikembangkan oleh https://valentin.app, dan fitur utamanya adalah "helps with tasks like seeing if a page is indexable".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi SEO helper

Unduh file ekstensi SEO helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        SEO helper shows wether the current page can be indexed by Google or not and wether links will be follow or not.

release log:
v2.0 now with several new features like including status codes, redirects, robots.txt and canonical
v1.3 several bugfixes (including meta tag in body)
v1.2 now accounts for uppercase                    

Informasi Dasar Ekstensi

Nama SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
URL Resmi https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Deskripsi helps with tasks like seeing if a page is indexable
Ukuran File 191 KB
Jumlah Instalasi 247
Versi Saat Ini 2.0
Terakhir Diperbarui 2018-12-03
Tanggal Publikasi 2018-12-02
Penilaian 5.00/5 Total 3 Penilaian
Pengembang https://valentin.app
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://valentin.app/robotsmeta.html
URL Halaman Bantuan https://twitter.com/VorticonCmdr
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup.html",
        "default_title": "SEO helper",
        "name": "SEO helper"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png"
    },
    "description": "helps with tasks like seeing if a page is indexable",
    "manifest_version": 2,
    "name": "SEO helper",
    "permissions": [
        "storage",
        "webRequest",
        "webNavigation",
        "tabs",
        ""
    ],
    "version": "2.0"
}