Symfony docs version changer
Automatically redirects Symfony docs to preferred version. Preferred version is configurable.
Cos'è Symfony docs version changer?
Symfony docs version changer è un'estensione di Chrome sviluppata da Lukáš Holeczy, e la sua funzione principale è "Automatically redirects Symfony docs to preferred version. Preferred version is configurable.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Symfony docs version changer
Scarica i file di estensione Symfony docs version changer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | ledcdfahjldkpgdaicaeagmhoadkpcak |
URL Ufficiale | https://chrome.google.com/webstore/detail/ledcdfahjldkpgdaicaeagmhoadkpcak |
Descrizione | Automatically redirects Symfony docs to preferred version. Preferred version is configurable. |
Dimensione del File | 45.19 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 2.0 |
Ultimo Aggiornamento | 2018-03-23 |
Data di Pubblicazione | 2018-03-23 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Lukáš Holeczy |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |