Standard Notes Clipper
Web clipper for Standard Notes
什么是Standard Notes Clipper?
Standard Notes Clipper是由Standard Notes开发的Chrome扩展程序,该扩展的主要功能是“Web clipper for Standard Notes”。
扩展截图
下载Standard Notes Clipper扩展crx文件
下载Standard Notes Clipper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Standard Notes Clipper extension is the perfect tool for saving and organizing web content. With this extension, you can clip full pages, articles, or select specific elements to save to your Standard Notes account, which is end-to-end encrypted for maximum security. Whether you're doing research, saving recipes, or just want to keep track of interesting articles, the Standard Notes Clipper makes it easy to store your content in a safe and organized way. Plus, with the ability to link your clipped content to tags and other notes, you can easily find what you're looking for when you need it.
扩展基本信息
名称 | Standard Notes Clipper |
ID | heapafmadojoodklnkhjanbinemaagok |
官方URL | https://chromewebstore.google.com/detail/standard-notes-clipper/heapafmadojoodklnkhjanbinemaagok |
简介 | Web clipper for Standard Notes |
文件大小 | 3.05 MB |
安装次数 | 668 |
当前版本 | 1.1.426 |
更新时间 | 2024-03-05 |
上架时间 | 2023-04-10 |
评分 | 5.00/5 共3次评分 |
开发者 | Standard Notes |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://standardnotes.com |
隐私政策页面URL | https://standardnotes.com/privacy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Standard Notes Clipper", "description": "Web clipper for Standard Notes", "permissions": [ "activeTab", "storage" ], "action": { "default_popup": "popup.html?route=extension" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "content_security_policy": { "extension_pages": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; connect-src * data: blob:; style-src 'self'; frame-src * blob:; img-src * data: blob:;" }, "version": "1.1.426" } |