Twitter User Memo
Twitter memo application
Twitter User Memo क्या है?
Twitter User Memo twitter-user-memo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Twitter memo application"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter User Memo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Twitter User Memo is a Chrome extension that adds a small text box near any user's profile. Use this extension to leave a short memo on who users are at text boxes added beside their profile pictures, both on profile pages and hover profiles.
एक्सटेंशन की मूल जानकारी
नाम | Twitter User Memo |
ID | bengjldcoldlkkpmajaeaochdoconilj |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitter-user-memo/bengjldcoldlkkpmajaeaochdoconilj |
विवरण | Twitter memo application |
फ़ाइल का आकार | 21.22 KB |
स्थापना संख्या | 543 |
वर्तमान संस्करण | 0.2 |
अंतिम अपडेट | 2020-04-04 |
प्रकाशन तिथि | 2020-04-04 |
रेटिंग | 4.21/5 कुल 14 रेटिंग्स |
डेवलपर | twitter-user-memo |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "description": "Twitter memo application", "default_locale": "en", "manifest_version": 2, "permissions": [ "storage", "webRequest", "*:\/\/*.twitter.com\/" ], "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "content_scripts": [ { "css": [ "css\/main.css" ], "matches": [ "https:\/\/*.twitter.com\/*" ], "run_at": "document_end", "js": [ "js\/memoOnCard.js", "js\/memoOnProfile.js" ] } ], "page_action": { "default_icon": { "32": "images\/icon24.png" }, "default_title": "Twitter Memo" } } |