CodeFuse.ObjectSpy
Chrome extension to support CodeFuse ObjectSpy application
Cos'è CodeFuse.ObjectSpy?
CodeFuse.ObjectSpy è un'estensione di Chrome sviluppata da https://codefuse.io, e la sua funzione principale è "Chrome extension to support CodeFuse ObjectSpy application".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CodeFuse.ObjectSpy
Scarica i file di estensione CodeFuse.ObjectSpy 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
CodeFuse ObjectSpy extension allows users of the CodeFuse test automation platform to quickly spy on web objects and store their identification information. Within the CodeFuse application this allows the user to spy on individual objects, screen-scrape whole screens and even create test steps with objects automatically created.
Informazioni di Base sull'Estensione
Nome | CodeFuse.ObjectSpy |
ID | nimeamjkbbdmkecfebekjbajcikacckj |
URL Ufficiale | https://chromewebstore.google.com/detail/codefuseobjectspy/nimeamjkbbdmkecfebekjbajcikacckj |
Descrizione | Chrome extension to support CodeFuse ObjectSpy application |
Dimensione del File | 18.49 KB |
Conteggio Installazioni | 17 |
Versione Corrente | 6 |
Ultimo Aggiornamento | 2017-04-26 |
Data di Pubblicazione | 2017-04-26 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://codefuse.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.codefuse.io |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CodeFuse.ObjectSpy", "description": "Chrome extension to support CodeFuse ObjectSpy application", "version": "6", "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [ "tabs", "storage", "webNavigation", "system.display", "http:\/\/*\/*", "https:\/\/*\/*" ], "externally_connectable": { "matches": [ "*:\/\/localhost\/*", "*:\/\/codefuseconsole-staging.cloudapp.net\/*", "*:\/\/www.codefuseconsole.eu\/*", "*:\/\/codefuseconsole.eu\/*" ] }, "content_scripts": [ { "matches": [ "*:\/\/localhost\/1spy\/_panel\/panel.html?extension=true", "*:\/\/codefuseconsole-staging.cloudapp.net\/1spy\/_panel\/panel.html?extension=true", "*:\/\/www.codefuseconsole.eu\/1spy\/_panel\/panel.html?extension=true", "*:\/\/codefuseconsole.eu\/1spy\/_panel\/panel.html?extension=true" ], "js": [ "injectPopup.js" ], "run_at": "document_start" } ] } |