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 |
官方網址 | 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" ] } } |