SEO helper

helps with tasks like seeing if a page is indexable

ما هو SEO helper؟

SEO helper هو إضافة Chrome تم تطويرها بواسطة https://valentin.app، والميزة الرئيسية لها هي "helps with tasks like seeing if a page is indexable".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة SEO helper

قم بتنزيل ملفات الامتداد SEO helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
الوصف helps with tasks like seeing if a page is indexable
حجم الملف 191 KB
عدد التثبيتات 247
النسخة الحالية 2.0
آخر تحديث 2018-12-03
تاريخ النشر 2018-12-02
تقييم 5.00/5 مجموع تقييمات 3
المطور https://valentin.app
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://valentin.app/robotsmeta.html
عنوان صفحة المساعدة https://twitter.com/VorticonCmdr
اللغات المدعومة 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"
}