No Curly
Avoid the time suck converting C# to F#
Что такое No Curly?
No Curly - это расширение Chrome, разработанное https://codingwithsam.com, и его основная функция - "Avoid the time suck converting C# to F#".
Снимки экрана расширения
Скачать файл CRX расширения No Curly
Скачайте файлы расширений No Curly в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Want to use F#, but find there is no documentation out there?
This tools helps with the conversion. It automates the hard the part of the conversion replacing all the C# on the web page with near-perfect F#.
Go to a web page that has C#, click this tool's icon, a transformation will happy and in a second or two some beautiful F# will have replaced the C# code.
Why near-pefeact and not perfect?
Well, C# is not F# and getting close enough is good enough. You're probably going to change the code slightly anyway. To automate a perfect conversion requires A LOT more effect.
ICON:
Основная информация о расширении
| Название | |
| ID | nkiofdmlpjbdcjphkffgbpblfmejbpgg |
| Официальный URL | https://chromewebstore.google.com/detail/no-curly/nkiofdmlpjbdcjphkffgbpblfmejbpgg |
| Описание | Avoid the time suck converting C# to F# |
| Размер файла | 23.84 KB |
| Количество установок | 58 |
| Текущая Версия | 0.0.0.6 |
| Последнее Обновление | 2019-08-06 |
| Дата публикации | 2019-08-06 |
| Рейтинг | 4.00/5 Всего 1 оценок |
| Разработчик | https://codingwithsam.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | http://codingwithsam.com |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "No Curly",
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js",
"content.js"
]
},
"browser_action": {
"default_icon": "curly-brackets.png"
},
"icons": {
"16": "curly-brackets.png",
"48": "curly-brackets.png",
"128": "curly-brackets.png"
},
"version": "0.0.0.6",
"description": "Avoid the time suck converting C# to F#",
"manifest_version": 2
} | |