Keep it Quick
Keep important data and info and reuse it quickly.
Keep it Quick क्या है?
Keep it Quick etaylib द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keep important data and info and reuse it quickly."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Keep it Quick एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } } |