Twitter User Memo
Twitter memo application
Cos'è Twitter User Memo?
Twitter User Memo è un'estensione di Chrome sviluppata da twitter-user-memo, e la sua funzione principale è "Twitter memo application".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter User Memo
Scarica i file di estensione Twitter User Memo in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | bengjldcoldlkkpmajaeaochdoconilj |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitter-user-memo/bengjldcoldlkkpmajaeaochdoconilj |
| Descrizione | Twitter memo application |
| Dimensione del File | 21.22 KB |
| Conteggio Installazioni | 543 |
| Versione Corrente | 0.2 |
| Ultimo Aggiornamento | 2020-04-04 |
| Data di Pubblicazione | 2020-04-04 |
| Valutazione | 4.21/5 Totale 14 Valutazioni |
| Sviluppatore | twitter-user-memo |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |