CodeFuse.ObjectSpy
Chrome extension to support CodeFuse ObjectSpy application
Wat is CodeFuse.ObjectSpy?
CodeFuse.ObjectSpy is een Chrome-extensie ontwikkeld door https://codefuse.io, en de belangrijkste functie is "Chrome extension to support CodeFuse ObjectSpy application".
Extensie Screenshots
Download het CRX-bestand van de extensie CodeFuse.ObjectSpy
Download CodeFuse.ObjectSpy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | CodeFuse.ObjectSpy |
ID | nimeamjkbbdmkecfebekjbajcikacckj |
Officiële URL | https://chromewebstore.google.com/detail/codefuseobjectspy/nimeamjkbbdmkecfebekjbajcikacckj |
Beschrijving | Chrome extension to support CodeFuse ObjectSpy application |
Bestandsgrootte | 18.49 KB |
Aantal Installaties | 17 |
Huidige Versie | 6 |
Laatst Bijgewerkt | 2017-04-26 |
Publicatiedatum | 2017-04-26 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://codefuse.io |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.codefuse.io |
Ondersteunde Talen | 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" } ] } |