Symfony docs version changer
Automatically redirects Symfony docs to preferred version. Preferred version is configurable.
什么是Symfony docs version changer?
Symfony docs version changer是由Lukáš Holeczy开发的Chrome扩展程序,该扩展的主要功能是“Automatically redirects Symfony docs to preferred version. Preferred version is configurable.”。
扩展截图
下载Symfony docs version changer扩展crx文件
下载Symfony docs version changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
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" ] } ] } |