Selection to file
This extension allows the user to save selection on a text file.
什么是Selection to file?
Selection to file是由mikewellback开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to save selection on a text file.”。
扩展截图
下载Selection to file扩展crx文件
下载Selection to file扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Have you ever needed to save part of the text from a web page? What you can do nowadays, is to save the entire page, with all the unneeded images and resources attached (a lot of things, for just some text) or to copy the text, open a text editor, paste it and search for a path where to save it (a lot of steps!). With Selection to file, today, you can simply select the text you want and click save: you will find all the text you saved in the download folder.
扩展基本信息
名称 | Selection to file |
ID | jolheiipneamokgnlmfbnmkngphjpnji |
官方URL | https://chromewebstore.google.com/detail/selection-to-file/jolheiipneamokgnlmfbnmkngphjpnji |
简介 | This extension allows the user to save selection on a text file. |
文件大小 | 8.52 KB |
安装次数 | 162 |
当前版本 | 1.1 |
更新时间 | 2023-05-05 |
上架时间 | 2017-12-21 |
评分 | 5.00/5 共4次评分 |
开发者 | mikewellback |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Selection to file", "description": "This extension allows the user to save selection on a text file.", "version": "1.1", "browser_action": { "default_icon": "g19.png", "default_popup": "popup.html", "default_title": "Selection to file info" }, "icons": { "16": "g16.png", "48": "g48.png", "128": "g128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "contextMenus", "downloads" ] } |