hn-friends
Highlight and tag your friends on Hacker News.
Cos'è hn-friends?
hn-friends è un'estensione di Chrome sviluppata da jessejesse123, e la sua funzione principale è "Highlight and tag your friends on Hacker News.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione hn-friends
Scarica i file di estensione hn-friends 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
Highlight and tag your friends on Hacker News. Informazioni di Base sull'Estensione
| Nome | |
| ID | ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
| URL Ufficiale | https://chromewebstore.google.com/detail/hn-friends/ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
| Descrizione | Highlight and tag your friends on Hacker News. |
| Dimensione del File | 15.83 KB |
| Conteggio Installazioni | 27 |
| Versione Corrente | 1.2 |
| Ultimo Aggiornamento | 2018-08-10 |
| Data di Pubblicazione | 2018-08-10 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | jessejesse123 |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "hn-friends",
"version": "1.2",
"description": "Highlight and tag your friends on Hacker News.",
"icons": {
"48": "icons\/48.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"img\/tag.svg"
],
"content_scripts": [
{
"matches": [
"https:\/\/news.ycombinator.com\/*"
],
"js": [
"src\/utils.js",
"src\/hn-friends.js"
]
},
{
"matches": [
"https:\/\/news.ycombinator.com\/user?id=*"
],
"js": [
"src\/user.js"
]
}
],
"browser_action": {
"browser_style": false,
"default_icon": {
"48": "icons\/48.png",
"96": "icons\/96.png"
},
"default_title": "HN Friends",
"default_popup": "popup\/popup.html"
}
} | |