Contentstack

Quickly navigate from a live web page to its corresponding entry in Contentstack

Contentstackคืออะไร?

Contentstack เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://contentstack.com และคุณลักษณะหลักของมันคือ "Quickly navigate from a live web page to its corresponding entry in Contentstack"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Contentstack

ดาวน์โหลดไฟล์ส่วนขยาย Contentstack ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        How does it work?

If you are on a web page of a site that is powered by Contentstack, and if you have the permission to edit its content, you will see an edit button at the right/left bottom of the page. Clicking this button will take you to the corresponding entry in Contenstack, where you can edit the entry. 

This eliminates the need to search for specific entries within Contentstack’s web application and provides an intuitive editing experience for users who need to quickly find and update content. 


How to set up the extension?

1. Add this extension by clicking on the Add to Chrome button.

2. Once installed, a pop-up will prompt you to enter the stack details, datacenter region (North America, Europe, & Other), and button preferences. Provide the necessary details in each field (all fields are mandatory) and then save the configuration.

3. Add the following attributes to the body tag of your website’s page templates:

a. data-pageref: Used to identify the entry UID of the current page
b. data-contenttype: Used to identify the content type UID of the entry
c. data-locale: Used to identify the local of the entry for the current page

Here’s an example of how to add these details in your code:



In the above example:

"bltb8b487559a1b715d" is the UID of the entry
"product" is the UID of the content type
"en-us" is the locale of the entry of the corresponding web page

4. Go to the tab in your Chrome browser where you want to use this extension, and reload or refresh the page.
Note: This is a one-time activity when you add a new domain or an API key.

5. The Edit button will now be visible on your Contentstack-powered web pages.

For more details on the extension, visit our GitHub page: https://github.com/contentstack/contentstack-chrome-extension.git                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Contentstack Contentstack
ID kliacmaffhaakhphcelpjcmienmikgoa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/contentstack/kliacmaffhaakhphcelpjcmienmikgoa
คำอธิบาย Quickly navigate from a live web page to its corresponding entry in Contentstack
ขนาดไฟล์ 49.61 KB
จำนวนการติดตั้ง 512
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2022-09-14
วันที่เผยแพร่ 2020-06-26
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://contentstack.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.contentstack.com/docs/developers/utilities/contentstack-google-chrome-extension/
URL หน้าช่วยเหลือ https://www.contentstack.com/company/contact-us
URL หน้านโยบายความเป็นส่วนตัว https://www.contentstack.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contentstack",
    "version": "1.2.3",
    "description": "Quickly navigate from a live web page to its corresponding entry in Contentstack",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "downloads"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    }
}