WysiwyBlogger

Fix mangled Blogger styles

What is WysiwyBlogger?

WysiwyBlogger is a Chrome extension developed by Adam Pritchard, and its main feature is "Fix mangled Blogger styles".

Download WysiwyBlogger Extension CRX File

Download WysiwyBlogger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Fixes Blogger's mangling of inline styles, which prevents content in the edit view from being WYSIWYG. Also restores functionality to Markdown Here.                    

Extension Basic Information

Name WysiwyBlogger WysiwyBlogger
ID apdeenjcfcccaoaeccbbnaiofikcpeic
Official URL https://chrome.google.com/webstore/detail/apdeenjcfcccaoaeccbbnaiofikcpeic
Description Fix mangled Blogger styles
File Size 11.43 KB
Installation Count 54
Current Version 0.0.1
Last Updated 2015-03-05
Publish Date 2015-03-05
Developer Adam Pritchard
Email [email protected]
Payment Type free
Extension Website https://github.com/adam-p/wysiwyblogger
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WysiwyBlogger",
    "version": "0.0.1",
    "description": "Fix mangled Blogger styles",
    "homepage_url": "https:\/\/github.com\/adam-p\/wysiwyblogger",
    "minimum_chrome_version": "6",
    "icons": {
        "512": "icon.png"
    },
    "permissions": [],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.blogger.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "38": "icon.png"
        },
        "default_title": "WysiwyBlogger"
    }
}