WordBird
Find and Replace Words on Websites.
Cos'è WordBird?
WordBird è un'estensione di Chrome sviluppata da thalida, e la sua funzione principale è "Find and Replace Words on Websites.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WordBird
Scarica i file di estensione WordBird 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
Ever wanted to replace all instances of "word" with "bird"? Well, now you can! As well as any and all other word/phrase replacements your mind can dream of.
Informazioni di Base sull'Estensione
Nome | |
ID | phjelaokjghhjogbfmkljhghhnbidfgk |
URL Ufficiale | https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk |
Descrizione | Find and Replace Words on Websites. |
Dimensione del File | 978 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2017-02-17 |
Data di Pubblicazione | 2017-02-17 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | thalida |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/thalida/WordBird |
URL della Pagina di Aiuto | https://github.com/thalida/WordBird/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WordBird", "description": "Find and Replace Words on Websites.", "version": "1.0.5", "author": "thalida", "homepage_url": "https:\/\/github.com\/thalida\/WordBird", "permissions": [ "storage" ], "icons": { "19": "icons\/icon-on.19.png", "48": "icons\/icon-on.48.png", "128": "icons\/icon-on.128.png" }, "browser_action": { "default_icon": { "19": "icons\/icon-on.19.png", "48": "icons\/icon-on.48.png", "128": "icons\/icon-on.128.png" }, "default_popup": "public\/dist\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_page": "public\/dist\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |