Contentful Sidekick
Chrome Extension that enables inline editing for websites created in Contentful
Contentful Sidekickคืออะไร?
Contentful Sidekick เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lastrev.com และคุณลักษณะหลักของมันคือ "Chrome Extension that enables inline editing for websites created in Contentful"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Contentful Sidekick
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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'" } |