Symfony docs version changer
Automatically redirects Symfony docs to preferred version. Preferred version is configurable.
Qu'est-ce que Symfony docs version changer ?
Symfony docs version changer est une extension Chrome développée par Lukáš Holeczy, et sa fonction principale est "Automatically redirects Symfony docs to preferred version. Preferred version is configurable.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Symfony docs version changer
Téléchargez les fichiers d'extension Symfony docs version changer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ledcdfahjldkpgdaicaeagmhoadkpcak |
URL Officiel | https://chrome.google.com/webstore/detail/ledcdfahjldkpgdaicaeagmhoadkpcak |
Description | Automatically redirects Symfony docs to preferred version. Preferred version is configurable. |
Taille du Fichier | 45.19 KB |
Nombre d'Installations | 22 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2018-03-23 |
Date de Publication | 2018-03-23 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Lukáš Holeczy |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |