Dizplai

Right-click while in a social post, and click Add to Dizplai.

Dizplaiคืออะไร?

Dizplai เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dizplai และคุณลักษณะหลักของมันคือ "Right-click while in a social post, and click Add to Dizplai."

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

screenshot
screenshot

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

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

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

                        The Dizplai chrome extension lets you add individual public social posts to existing Searches and Buckets on your Dizplai installation while browsing in Chrome. 

How does it work?
* Open a Post that you want to add to your Dizplai environment
* Right-click, and choose "Add to Dizplai" from the menu
* From the sub-menu select the server and where you want the Post to end up. 

For more information, contact your Account Manager!                    

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

ชื่อ Dizplai Dizplai
ID mbfgnplnobbiakccimchkbdnccbjmgkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dizplai/mbfgnplnobbiakccimchkbdnccbjmgkn
คำอธิบาย Right-click while in a social post, and click Add to Dizplai.
ขนาดไฟล์ 697 KB
จำนวนการติดตั้ง 871
เวอร์ชันปัจจุบัน 30.0.4
อัปเดตครั้งล่าสุด 2023-10-16
วันที่เผยแพร่ 2020-06-11
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Dizplai
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://dizplai.com
URL หน้านโยบายความเป็นส่วนตัว http://www.dizplai.no/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dizplai",
    "short_name": "Dizplai",
    "description": "Right-click while in a social post, and click Add to Dizplai.",
    "version": "30.0.4",
    "author": "Dizplai - https:\/\/www.dizplai.com",
    "icons": {
        "16": "img\/x16.png",
        "32": "img\/x32.png",
        "48": "img\/x48.png",
        "128": "img\/x128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/p\/*",
                "https:\/\/www.instagram.com\/reel\/*",
                "https:\/\/twitter.com\/*\/status\/*",
                "https:\/\/x.com\/*\/status\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js",
                "inject-start.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.instagram.com\/p\/*",
                "https:\/\/www.instagram.com\/reel\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "inject-idle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected-start.js",
                "injected-idle.js"
            ],
            "matches": [
                "https:\/\/www.instagram.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/x.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.dizplai.com\/*",
            "https:\/\/*.never.no\/*"
        ]
    },
    "permissions": [
        "activeTab",
        "alarms",
        "contextMenus",
        "notifications",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.dizplai.com\/",
        "https:\/\/*.never.no\/",
        "https:\/\/*.facebook.com\/",
        "https:\/\/*.fbcdn.net\/",
        "https:\/\/*.instagram.com\/",
        "https:\/\/*.cdninstagram.com\/",
        "https:\/\/*.reddit.com\/",
        "https:\/\/twitter.com\/",
        "https:\/\/x.com\/",
        "https:\/\/*.twimg.com\/",
        "https:\/\/*.youtube.com\/",
        "https:\/\/*.ggpht.com\/"
    ],
    "options_ui": {
        "page": "js\/options\/options.html"
    }
}