Symfony docs version changer

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

What is Symfony docs version changer?

Symfony docs version changer is a Chrome extension developed by Lukáš Holeczy, and its main feature is "Automatically redirects Symfony docs to preferred version. Preferred version is configurable.".

Extension Screenshots

screenshot

Download Symfony docs version changer Extension CRX File

Download Symfony docs version changer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Symfony docs version changer Symfony docs version changer
ID ledcdfahjldkpgdaicaeagmhoadkpcak
Official URL https://chrome.google.com/webstore/detail/ledcdfahjldkpgdaicaeagmhoadkpcak
Description Automatically redirects Symfony docs to preferred version. Preferred version is configurable.
File Size 45.19 KB
Installation Count 22
Current Version 2.0
Last Updated 2018-03-23
Publish Date 2018-03-23
Rating 5.00/5 Total 1 Ratings
Developer Lukáš Holeczy
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}