Twitter User Memo
Twitter memo application
Wat is Twitter User Memo?
Twitter User Memo is een Chrome-extensie ontwikkeld door twitter-user-memo, en de belangrijkste functie is "Twitter memo application".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitter User Memo
Download Twitter User Memo-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | bengjldcoldlkkpmajaeaochdoconilj |
| Officiële URL | https://chromewebstore.google.com/detail/twitter-user-memo/bengjldcoldlkkpmajaeaochdoconilj |
| Beschrijving | Twitter memo application |
| Bestandsgrootte | 21.22 KB |
| Aantal Installaties | 543 |
| Huidige Versie | 0.2 |
| Laatst Bijgewerkt | 2020-04-04 |
| Publicatiedatum | 2020-04-04 |
| Beoordeling | 4.21/5 Totaal 14 Beoordelingen |
| Ontwikkelaar | twitter-user-memo |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |