SimpleNotes
This extension allows for quick and simple copy paste notes
SimpleNotes क्या है?
SimpleNotes Chris VH द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows for quick and simple copy paste notes"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SimpleNotes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Extension that allows you to copy paste into a google docs ordered list without switching tabs, check out the tutorial video for info on how to use the app! Thanks to Madebyoliver from flaticon for the icon.
एक्सटेंशन की मूल जानकारी
नाम | SimpleNotes |
ID | knellbbpcnklbllfdcoehcambcddlmjd |
आधिकारिक URL | https://chromewebstore.google.com/detail/simplenotes/knellbbpcnklbllfdcoehcambcddlmjd |
विवरण | This extension allows for quick and simple copy paste notes |
फ़ाइल का आकार | 6.34 KB |
स्थापना संख्या | 47 |
वर्तमान संस्करण | 1.7 |
अंतिम अपडेट | 2016-09-11 |
प्रकाशन तिथि | 2016-09-11 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Chris VH |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.patreon.com/yungdev |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SimpleNotes", "description": "This extension allows for quick and simple copy paste notes", "version": "1.7", "icons": { "32": "note.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "contextMenus", "*:\/\/*\/*", "https:\/\/ajax.googleapis.com\/", "identity" ], "oauth2": { "client_id": "6344508761-1uii1p3je2jnt4innp07fbk8rvq66976.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/documents", "https:\/\/www.googleapis.com\/auth\/drive" ] }, "background": { "scripts": [ "background.js" ] }, "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnr7\/ibWbXC9zbhj1utI3DD8I9a+5Ru9dxkEGYgEtTqFIf0VXoVgkqxMCGhrn8ES\/jOEyF0\/QUySKK9evfKaaeRcCL8AUZbWuO2IOQeRHT7TsV0xpXG1o7BvsQ1M\/yuTCc+kvNJ4JQxKmSCrf8V5bcKPsXxTKfetVLFzouw5KkYdF3Ob\/4Sd8gQaxC2b7Mbw7B6KkzQDEeSxaZi4z37C5P8k+2ZUHZsd4yj8T0WozukbLtwE3vdWeWrtZZ5eQwhvTB8s5AndKLyLWMWKFkKGixuLuwe3Z8Ahyb+av\/VnwdQJ10SqlVdbZ1VIt5ZnD7J\/2f1FHXVt30r0Txs7OqItf\/QIDAQAB", "content_security_policy": "script-src 'self' https:\/\/*.google.com https:\/\/*.google.com; object-src 'self'", "commands": { "setHeader": { "suggested_key": { "default": "Alt+Shift+H", "mac": "Alt+Shift+H" }, "description": "Sets header in notes", "global": "true" }, "setTitle": { "suggested_key": { "default": "Alt+Shift+T", "mac": "Alt+Shift+T" }, "description": "Sets Title in notes", "global": "true" }, "setSubsection": { "suggested_key": { "default": "Alt+Shift+S", "mac": "Alt+Shift+S" }, "description": "Sets Subsection in notes", "global": "true" }, "setDetail": { "suggested_key": { "default": "Alt+Shift+D", "mac": "Alt+Shift+D" }, "description": "Sets Detail in notes", "global": "true" } } } |