Dizplai

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

Dizplai란 무엇입니까?

Dizplai은(는) Dizplai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Right-click while in a social post, and click Add to Dizplai."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dizplai 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}