Custom Blogger Extension
Custom hacks for blogger developers
什么是Custom Blogger Extension?
Custom Blogger Extension是由Muhammad Abu 'l-Gharaniq开发的Chrome扩展程序,该扩展的主要功能是“Custom hacks for blogger developers”。
扩展截图
下载Custom Blogger Extension扩展crx文件
下载Custom Blogger Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chrome Extension for Blogger (blogger.com) developers, with shortcuts and basic edits.
Shortcuts
CTRL + SPACE to open blog URL in new tap from html editor page
CTRL + S to save template code
CTRL + I to open live preview on html editor page
Snippets
New feature for code snippets, select your snippet, and it will be copied directly to clipboard.
Note: Sometimes snippet selector not showing, don't worry just click on any button on keyboard, or refresh the editor page. 扩展基本信息
| 名称 | |
| ID | edbhcnncibhjdeflaagkbdklifcdklmc |
| 官方URL | https://chromewebstore.google.com/detail/custom-blogger-extension/edbhcnncibhjdeflaagkbdklifcdklmc |
| 简介 | Custom hacks for blogger developers |
| 文件大小 | 16.39 KB |
| 安装次数 | 503 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2020-09-02 |
| 上架时间 | 2020-09-01 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Muhammad Abu 'l-Gharaniq |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/midoghranek/custom-blogger |
| 隐私政策页面URL | https://ghranek.com/privacy |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Custom Blogger Extension",
"description": "Custom hacks for blogger developers",
"version": "0.0.2",
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"background": {
"scripts": [
"scripts\/background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.blogger.com\/*"
],
"js": [
"scripts\/secret.js",
"scripts\/snippetsData.js",
"scripts\/snippets.js",
"scripts\/content.js"
]
}
],
"browser_action": {
"default_icon": "assets\/icon16.png",
"default_popup": "public\/popup.html"
}
} | |