CodeFuse.ObjectSpy
Chrome extension to support CodeFuse ObjectSpy application
Vad är CodeFuse.ObjectSpy?
CodeFuse.ObjectSpy är en Chrome-tillägg utvecklad av https://codefuse.io, och dess huvudfunktion är "Chrome extension to support CodeFuse ObjectSpy application".
Tilläggsskärmbilder
Ladda ner CodeFuse.ObjectSpy-förlängningens CRX-fil
Ladda ner CodeFuse.ObjectSpy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | CodeFuse.ObjectSpy |
ID | nimeamjkbbdmkecfebekjbajcikacckj |
Officiell webbadress | https://chromewebstore.google.com/detail/codefuseobjectspy/nimeamjkbbdmkecfebekjbajcikacckj |
Beskrivning | Chrome extension to support CodeFuse ObjectSpy application |
Filstorlek | 18.49 KB |
Antal Installationer | 17 |
Aktuell Version | 6 |
Senast Uppdaterad | 2017-04-26 |
Publiceringsdatum | 2017-04-26 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://codefuse.io |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://www.codefuse.io |
Stödda Språk | 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" } ] } |