Wyatt
He is a siberian husky that lives in Chrome, and helps write rspec tests by recording your actions in the browser.
Что такое Wyatt?
Wyatt - это расширение Chrome, разработанное Alex Grande, и его основная функция - "He is a siberian husky that lives in Chrome, and helps write rspec tests by recording your actions in the browser.".
Скачать файл CRX расширения Wyatt
Скачайте файлы расширений Wyatt в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Wyatt - rspec generator
Wyatt is a siberian husky that lives inside Chrome. He gets enjoyment from life by helping you write rspec feature tests.
Wyatt generates rspec feature tests by clicking around your website.
Learn more:
https://github.com/BreakthroughBehavioralInc/wyatt Основная информация о расширении
| Название | |
| ID | loghmjankjabncogkonpodnkgdlojhen |
| Официальный URL | https://chrome.google.com/webstore/detail/wyatt/loghmjankjabncogkonpodnkgdlojhen |
| Описание | He is a siberian husky that lives in Chrome, and helps write rspec tests by recording your actions in the browser. |
| Размер файла | 216 KB |
| Количество установок | 10 |
| Текущая Версия | 0.0.2 |
| Последнее Обновление | 2016-03-23 |
| Дата публикации | 2016-03-23 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | Alex Grande |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.0.2",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/chromereload.js",
"scripts\/background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
},
"default_title": "Wyatt",
"default_popup": "popup.html"
},
"omnibox": {
"keyword": "Wyatt"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/gator.js",
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |