Keep it Quick
Keep important data and info and reuse it quickly.
什么是Keep it Quick?
Keep it Quick是由etaylib开发的Chrome扩展程序,该扩展的主要功能是“Keep important data and info and reuse it quickly.”。
扩展截图
下载Keep it Quick扩展crx文件
下载Keep it Quick扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Have you ever used the computer and on some point really needed to use your driver's licence id, your office address or your parent PO BOX number? How many times did you have to get up of your chair and look for it? Well, now you can keep the data INSIDE the browser for easy fetching. Quickly add, remove, copy or fill any piece of important data you need for later use. Important: Your data is discrete, we don't save it or track it.
扩展基本信息
名称 | |
ID | gobpjokhejbdfdmdoojdkkliikomniol |
官方URL | https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol |
简介 | Keep important data and info and reuse it quickly. |
文件大小 | 126 KB |
安装次数 | 312 |
当前版本 | 0.1.0 |
更新时间 | 2019-02-02 |
上架时间 | 2019-02-02 |
评分 | 3.00/5 共1次评分 |
开发者 | etaylib |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://etaylib.s3.amazonaws.com/privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Keep it Quick", "short_name": "Keep it Quick", "description": "Keep important data and info and reuse it quickly.", "version": "0.1.0", "browser_action": { "default_icon": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.3.min.js", "scripts.js" ], "css": [ "style.css" ], "run_at": "document_start", "all_frames": true, "match_about_blank": true } ], "icons": { "128": "logo.png", "16": "logo.png", "48": "logo.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "contextMenus" ], "background": { "scripts": [ "jquery-1.11.3.min.js", "background.js" ] } } |