Bootlint This Page
Use this extension to inject the Bootlint tool into the web page and automatically scan it for common Bootstrap related errors
Что такое Bootlint This Page?
Bootlint This Page - это расширение Chrome, разработанное rtpHarry, и его основная функция - "Use this extension to inject the Bootlint tool into the web page and automatically scan it for common Bootstrap related errors".
Снимки экрана расширения
Скачать файл CRX расширения Bootlint This Page
Скачайте файлы расширений Bootlint This Page в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds a single click Bootlint This Page button which will execute the bootlint.js script against the current page. If errors are found then bootlint.js will generate a JavaScript alert and the errors will be displayed in the JavaScript console window. To view the errors simply press F12 to bring up the developer tools and then click the console tab. **Note: This extension is not affiliated with the official Bootlint or Bootstrap projects**
Основная информация о расширении
Название | |
ID | cnamjhcdoadndjpjodeclalnmfhkoepb |
Официальный URL | https://chromewebstore.google.com/detail/bootlint-this-page/cnamjhcdoadndjpjodeclalnmfhkoepb |
Описание | Use this extension to inject the Bootlint tool into the web page and automatically scan it for common Bootstrap related errors |
Размер файла | 186 KB |
Количество установок | 1,312 |
Текущая Версия | 1.2 |
Последнее Обновление | 2014-12-01 |
Дата публикации | 2014-12-01 |
Рейтинг | 4.25/5 Всего 8 оценок |
Разработчик | rtpHarry |
Тип оплаты | free |
Официальный сайт расширения | http://articles.runtings.co.uk/p/bootlint-this-page-chrome.html |
URL страницы помощи | https://github.com/rtpHarry/BootlintThisPage-Chrome/issues |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "minimum_chrome_version": "20", "name": "Bootlint This Page", "version": "1.2", "author": "rtpHarry", "homepage_url": "http:\/\/articles.runtings.co.uk\/p\/bootlint-this-page-chrome.html", "description": "Use this extension to inject the Bootlint tool into the web page and automatically scan it for common Bootstrap related errors", "content_security_policy": "script-src 'self' https:\/\/maxcdn.bootstrapcdn.com\/ https:\/\/www.google-analytics.com; object-src 'self'", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "options\/options.html", "background": { "scripts": [ "bootlintthispage.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Bootlint This Page" }, "permissions": [ "activeTab", "storage" ] } |