CodeFuse.ObjectSpy
Chrome extension to support CodeFuse ObjectSpy application
CodeFuse.ObjectSpyとは何ですか?
CodeFuse.ObjectSpyはhttps://codefuse.ioによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to support CodeFuse ObjectSpy application」です。
拡張機能のスクリーンショット
CodeFuse.ObjectSpy拡張機能のCRXファイルをダウンロード
CodeFuse.ObjectSpy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | CodeFuse.ObjectSpy |
ID | nimeamjkbbdmkecfebekjbajcikacckj |
公式URL | https://chromewebstore.google.com/detail/codefuseobjectspy/nimeamjkbbdmkecfebekjbajcikacckj |
説明 | Chrome extension to support CodeFuse ObjectSpy application |
ファイルサイズ | 18.49 KB |
インストール数 | 17 |
現在のバージョン | 6 |
最終更新日 | 2017-04-26 |
公開日 | 2017-04-26 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://codefuse.io |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://www.codefuse.io |
対応言語 | 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" } ] } |