Discord Notebook
Save Discord messages and view them later
什么是Discord Notebook?
Discord Notebook是由Discord Notebook开发的Chrome扩展程序,该扩展的主要功能是“Save Discord messages and view them later”。
扩展截图
下载Discord Notebook扩展crx文件
下载Discord Notebook扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Discord Notebook **Important: Always update the extension to the latest version** Discord Notebook, the extension lets you save Discord messages and view them later. Features: Save messages View messages by Guild/Channel/User Bookmark and delete messages Export messages from Discord search to a file To use the extension, log in to your favorite server and you will see the Discord Notebook icon at the toolbar next to the discord notifications icon. Click on the icon and select "Select messages", then click on any message you want to save and you will see it marked as selected, click again on the message to unmark it. Click on the icon again and select one of the saving options, after clicking on one of the saving options the extension will save your messages locally in your browser storage. To view the messages click on the extension icon in your browser toolbar, this will open up the extension page with a nice user interface for you to view the messages. Please send your feedback to [email protected] together with suggestions and features you would like to see in the future. Happy Chatting! Discord Notebook
扩展基本信息
名称 | Discord Notebook |
ID | jeeilfacglnffgflhgmciaegglekjlod |
官方URL | https://chromewebstore.google.com/detail/discord-notebook/jeeilfacglnffgflhgmciaegglekjlod |
简介 | Save Discord messages and view them later |
文件大小 | 3.1 MB |
安装次数 | 1,055 |
当前版本 | 0.0.26 |
更新时间 | 2023-03-04 |
上架时间 | 2020-05-18 |
评分 | 4.33/5 共9次评分 |
开发者 | Discord Notebook |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Discord Notebook", "short_name": "Discord Notebook", "version": "0.0.26", "author": "Asaf Aviv", "description": "Save Discord messages and view them later", "manifest_version": 2, "icons": { "128": "images\/book.png" }, "content_scripts": [ { "matches": [ "https:\/\/discord.com\/*" ], "js": [ "scripts\/content.js" ], "css": [ "styles\/styles.css" ] } ], "permissions": [ "tabs", "activeTab", "downloads", "storage" ], "browser_action": { "default_icon": { "128": "images\/book.png" } }, "web_accessible_resources": [ "scripts\/inject.js" ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/w.soundcloud.com\/ https:\/\/www.youtube.com\/ https:\/\/platform.twitter.com\/; object-src 'self'; child-src https:\/\/w.soundcloud.com\/ https:\/\/www.youtube.com\/ https:\/\/platform.twitter.com\/" } |