Contentful Sidekick
Chrome Extension that enables inline editing for websites created in Contentful
Contentful Sidekick क्या है?
Contentful Sidekick https://lastrev.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension that enables inline editing for websites created in Contentful"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Contentful Sidekick एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'" } |