Title changer
An extension that changes the title!
Cos'è Title changer?
Title changer è un'estensione di Chrome sviluppata da lucasmorita, e la sua funzione principale è "An extension that changes the title!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Title changer
Scarica i file di estensione Title changer 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
A simple extension that just changes the titles. When the popup shows up, just type whatever you want, and the title will be set. A personal project that helps me identifying what the tab has in its content. Informazioni di Base sull'Estensione
| Nome | |
| ID | ooocbkdokjcadckfeogdgingifpmnkfp |
| URL Ufficiale | https://chromewebstore.google.com/detail/title-changer/ooocbkdokjcadckfeogdgingifpmnkfp |
| Descrizione | An extension that changes the title! |
| Dimensione del File | 8.66 KB |
| Conteggio Installazioni | 80 |
| Versione Corrente | 0.0.1 |
| Ultimo Aggiornamento | 2021-05-09 |
| Data di Pubblicazione | 2021-05-09 |
| Sviluppatore | lucasmorita |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Title changer",
"version": "0.0.1",
"description": "An extension that changes the title!",
"background": {
"service_worker": "background.js"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Home"
}
}
},
"permissions": [
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/pencil_logo.png",
"32": "images\/pencil_logo.png",
"48": "images\/pencil_logo.png",
"128": "images\/pencil_logo.png"
}
}
} | |