Symfony docs version changer

Automatically redirects Symfony docs to preferred version. Preferred version is configurable.

ما هو Symfony docs version changer؟

Symfony docs version changer هو إضافة Chrome تم تطويرها بواسطة Lukáš Holeczy، والميزة الرئيسية لها هي "Automatically redirects Symfony docs to preferred version. Preferred version is configurable.".

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

screenshot

تحميل ملف CRX للإضافة Symfony docs version changer

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

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

                        Tired of reading docs for newest version of Symfony when you are using older one? This extension will redirect you to docs for version you really want.                    

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

الاسم Symfony docs version changer Symfony docs version changer
ID ledcdfahjldkpgdaicaeagmhoadkpcak
عنوان URL الرسمي https://chrome.google.com/webstore/detail/ledcdfahjldkpgdaicaeagmhoadkpcak
الوصف Automatically redirects Symfony docs to preferred version. Preferred version is configurable.
حجم الملف 45.19 KB
عدد التثبيتات 22
النسخة الحالية 2.0
آخر تحديث 2018-03-23
تاريخ النشر 2018-03-23
تقييم 5.00/5 مجموع تقييمات 1
المطور Lukáš Holeczy
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Symfony docs version changer",
    "description": "Automatically redirects Symfony docs to preferred version. Preferred version is configurable.",
    "version": "2.0",
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/symfony.com\/doc\/*",
        "activeTab"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/symfony.com\/doc\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}