WysiwyBlogger
Fix mangled Blogger styles
什么是WysiwyBlogger?
WysiwyBlogger是由Adam Pritchard开发的Chrome扩展程序,该扩展的主要功能是“Fix mangled Blogger styles”。
下载WysiwyBlogger扩展crx文件
下载WysiwyBlogger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Fixes Blogger's mangling of inline styles, which prevents content in the edit view from being WYSIWYG. Also restores functionality to Markdown Here.
扩展基本信息
名称 | |
ID | apdeenjcfcccaoaeccbbnaiofikcpeic |
官方URL | https://chrome.google.com/webstore/detail/apdeenjcfcccaoaeccbbnaiofikcpeic |
简介 | Fix mangled Blogger styles |
文件大小 | 11.43 KB |
安装次数 | 54 |
当前版本 | 0.0.1 |
更新时间 | 2015-03-05 |
上架时间 | 2015-03-05 |
开发者 | Adam Pritchard |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/adam-p/wysiwyblogger |
支持的语言 | 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" } } |