Bootlint This Page

Use this extension to inject the Bootlint tool into the web page and automatically scan it for common Bootstrap related errors

Was ist Bootlint This Page?

Bootlint This Page ist eine Chrome-Erweiterung, die von rtpHarry entwickelt wurde, und ihr Hauptmerkmal ist "Use this extension to inject the Bootlint tool into the web page and automatically scan it for common Bootstrap related errors".

Erweiterungsscreenshots

screenshot
screenshot

Bootlint This Page-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bootlint This Page-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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**                    

Grundlegende Informationen zur Erweiterung

Name Bootlint This Page Bootlint This Page
ID cnamjhcdoadndjpjodeclalnmfhkoepb
Offizielle URL https://chromewebstore.google.com/detail/bootlint-this-page/cnamjhcdoadndjpjodeclalnmfhkoepb
Beschreibung Use this extension to inject the Bootlint tool into the web page and automatically scan it for common Bootstrap related errors
Dateigröße 186 KB
Installationsanzahl 1,312
Aktuelle Version 1.2
Letztes Update 2014-12-01
Veröffentlichungsdatum 2014-12-01
Bewertung 4.25/5 Insgesamt 8 Bewertungen
Entwickler rtpHarry
Zahlungsart free
Erweiterungswebsite http://articles.runtings.co.uk/p/bootlint-this-page-chrome.html
Hilfeseite URL https://github.com/rtpHarry/BootlintThisPage-Chrome/issues
Unterstützte Sprachen 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"
    ]
}