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
Eメール [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'"
}