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.”。
扩展截图
下载Dizplai扩展crx文件
下载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 |
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" } } |