WysiwyBlogger

Fix mangled Blogger styles

WysiwyBlogger là gì?

WysiwyBlogger là một tiện ích mở rộng Chrome được phát triển bởi Adam Pritchard, và tính năng chính của nó là "Fix mangled Blogger styles".

Tải xuống tệp CRX của tiện ích mở rộng WysiwyBlogger

Tải xuống các tệp mở rộng WysiwyBlogger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WysiwyBlogger WysiwyBlogger
ID apdeenjcfcccaoaeccbbnaiofikcpeic
URL Chính Thức https://chrome.google.com/webstore/detail/apdeenjcfcccaoaeccbbnaiofikcpeic
Mô tả Fix mangled Blogger styles
Kích Thước Tệp 11.43 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2015-03-05
Ngày Phát Hành 2015-03-05
Nhà Phát Triển Adam Pritchard
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/adam-p/wysiwyblogger
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}