Grid Builder
Grid Builder extension applies a grid to current web page.
Что такое Grid Builder?
Grid Builder - это расширение Chrome, разработанное https://beltslib.net, и его основная функция - "Grid Builder extension applies a grid to current web page.".
Снимки экрана расширения
Скачать файл CRX расширения Grid Builder
Скачайте файлы расширений Grid Builder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Grid Builder is a tool, built for front-end developers to inspect and examine their designs or any web site in action.
This extension is absolutely a must have in every front-end developers browser. Основная информация о расширении
| Название | |
| ID | fdngjphcahnpgejdhledgcfggjokekgl |
| Официальный URL | https://chromewebstore.google.com/detail/grid-builder/fdngjphcahnpgejdhledgcfggjokekgl |
| Описание | Grid Builder extension applies a grid to current web page. |
| Размер файла | 43.28 KB |
| Количество установок | 972 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2014-11-23 |
| Дата публикации | 2014-11-23 |
| Рейтинг | 3.70/5 Всего 10 оценок |
| Разработчик | https://beltslib.net |
| Тип оплаты | free |
| Официальный сайт расширения | http://gridbuilder.beltslib.net |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Grid Builder",
"description": "Grid Builder extension applies a grid to current web page.",
"version": "1.0",
"browser_action": {
"default_icon": "icon-disabled.png",
"default_popup": "popup.html"
},
"background": {
"page": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [
"content.min.css"
],
"js": [
"jquery-2.1.1.min.js",
"content.min.js"
]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"storage"
]
} | |