Blogspot Quickedit Links

Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.

什么是Blogspot Quickedit Links?

Blogspot Quickedit Links是由https://so-how-do-i.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.”。

扩展截图

screenshot

下载Blogspot Quickedit Links扩展crx文件

下载Blogspot Quickedit Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Using a JS contentscript, adds quickedit links to the posts and gadgets on the new themes, which don't support them anymore.                    

扩展基本信息

名称 Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
官方URL https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
简介 Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
文件大小 14.06 KB
安装次数 145
当前版本 1.1
更新时间 2017-03-26
上架时间 2017-03-26
评分 4.20/5 共5次评分
开发者 https://so-how-do-i.blogspot.com
付费类型 free
扩展官网 https://so-how-do-i.blogspot.com
帮助页面URL https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blogspot Quickedit Links",
    "description": "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.",
    "version": "1.1",
    "icons": {
        "16": "logo_blogger_color_1x_web_16dp.png",
        "32": "logo_blogger_color_1x_web_32dp.png",
        "48": "logo_blogger_color_1x_web_48dp.png",
        "96": "logo_blogger_color_1x_web_96dp.png"
    },
    "browser_action": {
        "default_icon": "popupicon.png",
        "default_popup": "popup.html",
        "default_title": "Click to edit!"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}