Contentful Sidekick
Chrome Extension that enables inline editing for websites created in Contentful
Contentful Sidekick là gì?
Contentful Sidekick là một tiện ích mở rộng Chrome được phát triển bởi https://lastrev.com, và tính năng chính của nó là "Chrome Extension that enables inline editing for websites created in Contentful".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Contentful Sidekick
Tải xuống các tệp mở rộng Contentful Sidekick dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Contentful Sidekick |
ID | cmheemjjmooepppggclooeejginffobo |
URL Chính Thức | https://chromewebstore.google.com/detail/contentful-sidekick/cmheemjjmooepppggclooeejginffobo |
Mô tả | Chrome Extension that enables inline editing for websites created in Contentful |
Kích Thước Tệp | 953 KB |
Số Lần Cài Đặt | 245 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2022-04-21 |
Ngày Phát Hành | 2019-11-06 |
Đánh Giá | 4.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://lastrev.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.lastrev.com |
URL Trang Trợ Giúp | https://support.lastrev.com |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |