KEYWORDSREADY
A simple extension that analyses JPEG images and generates keywords.
Cos'è KEYWORDSREADY?
KEYWORDSREADY è un'estensione di Chrome sviluppata da https://keywordsready.com, e la sua funzione principale è "A simple extension that analyses JPEG images and generates keywords.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione KEYWORDSREADY
Scarica i file di estensione KEYWORDSREADY 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
Informazioni di Base sull'Estensione
Nome | |
ID | kfmockieaihfbkpaenjmaiipmbcaobec |
URL Ufficiale | https://chrome.google.com/webstore/detail/keywordsready/kfmockieaihfbkpaenjmaiipmbcaobec |
Descrizione | A simple extension that analyses JPEG images and generates keywords. |
Dimensione del File | 34.12 KB |
Conteggio Installazioni | 179 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2017-06-10 |
Data di Pubblicazione | 2017-06-09 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://keywordsready.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://keywordsready.com/privacy |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "KEYWORDSREADY", "version": "0.0.1", "description": "A simple extension that analyses JPEG images and generates keywords.", "manifest_version": 2, "background": { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "scripts": [ "background.js" ], "js": [] }, "permissions": [ "contextMenus", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "clipboardWrite", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "browser_action": { "default_title": "KEYWORDSREADY", "default_icon": "icon128.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |