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"입니다.
확장 프로그램 스크린샷
Contentful Sidekick 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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'" } |