Quotes
Takes notes when browsing webpages
Quotes क्या है?
Quotes norridev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Takes notes when browsing webpages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Quotes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
We all browse hundreds of webpages every day. But how many of them do you still remember? With Quotes, you can easily keep track of your favorite web content. Start building your web content collection in 2 steps: 1) Go to any webpage and select any content that you'd like to keep. 2) Right click and choose 'add to Quotes' Congratulations, you just created your first quote! Enjoy! ------------------------------------------------- Team App Developer : [email protected] Cool UI Design : [email protected] http://dusuantou.com Please feel free to contact us if you have any feedback or suggestions. Also, special thanks to Una, Micky([email protected]) & Shirley([email protected]) for your input!
एक्सटेंशन की मूल जानकारी
नाम | Quotes |
ID | efjijadimklfhajimkncmkebmcjmfbmg |
आधिकारिक URL | https://chromewebstore.google.com/detail/quotes/efjijadimklfhajimkncmkebmcjmfbmg |
विवरण | Takes notes when browsing webpages |
फ़ाइल का आकार | 235 KB |
स्थापना संख्या | 65 |
वर्तमान संस्करण | 0.1.3 |
अंतिम अपडेट | 2013-05-08 |
प्रकाशन तिथि | 2013-05-07 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | norridev |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quotes", "description": "Takes notes when browsing webpages", "version": "0.1.3", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "contextMenus", "storage" ], "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "js": [ "jquery-1.9.1.min.js" ] } ], "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |