Contentful Sidekick

Chrome Extension that enables inline editing for websites created in Contentful

什么是Contentful Sidekick?

Contentful Sidekick是由https://lastrev.com开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension that enables inline editing for websites created in Contentful”。

扩展截图

screenshot
screenshot

下载Contentful Sidekick扩展crx文件

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

扩展使用说明

                        Helps end users of Contentful find the content they want to edit quickly on highly nested pages that use a lot of different pieces of content to make up the page.

IMPORTANT: Please follow the instructions on Github to enable the extension for your site. 
https://github.com/last-rev-llc/contentful-sidekick

Used with Contentful, the best headless CMS out there. https://www.contentful.com/

Contact Last Rev for all your custom development needs! www.lastrev.com                    

扩展基本信息

名称 Contentful Sidekick Contentful Sidekick
ID cmheemjjmooepppggclooeejginffobo
官方URL https://chromewebstore.google.com/detail/contentful-sidekick/cmheemjjmooepppggclooeejginffobo
简介 Chrome Extension that enables inline editing for websites created in Contentful
文件大小 953 KB
安装次数 245
当前版本 1.0.2
更新时间 2022-04-21
上架时间 2019-11-06
评分 4.67/5 共3次评分
开发者 https://lastrev.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://www.lastrev.com
帮助页面URL https://support.lastrev.com
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Contentful Sidekick",
    "short_name": "Contentful Sidekick",
    "description": "Chrome Extension that enables inline editing for websites created in Contentful",
    "version": "1.0.2",
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_title": "Contentful Sidekick"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/vendor.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/content.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}