Conversion.com's Optimizely Chrome Extension
This extension allows you to learn information about Optimizely on a given page
Conversion.com's Optimizely Chrome Extension란 무엇입니까?
Conversion.com's Optimizely Chrome Extension은(는) https://conversion.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to learn information about Optimizely on a given page"입니다.
확장 프로그램 스크린샷
Conversion.com's Optimizely Chrome Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- Displays if Optimizely is running on the page - See what active experiments are on the page - Turn on/off QA mode - View Optimizely events - Ability to change the variation you are on in an experiment - Copy the experiment URL to clipboard (including the variation that you have selected) - QR Code for the experiment URL (including the variation that you have selected) - Open all the variations of a certain experiment in different tabs - Directly access the Results and Editor page of an experiment - See the current Optimizely Revision ID - Get accounts saved status - Works with Optimizely Classic & Optimizely X - Realtime in-browser notifications for Optimizely events
확장 프로그램 기본 정보
이름 | Conversion.com's Optimizely Chrome Extension |
ID | ejklmdggogcbjpehmmjnebehjafnkiaj |
공식 URL | https://chromewebstore.google.com/detail/conversioncoms-optimizely/ejklmdggogcbjpehmmjnebehjafnkiaj |
설명 | This extension allows you to learn information about Optimizely on a given page |
파일 크기 | 1.1 MB |
설치 횟수 | 3,441 |
현재 버전 | 1.3550 |
최근 업데이트 | 2024-03-01 |
출시 날짜 | 2019-09-19 |
평점 | 4.40/5 총 10 개의 평점 |
개발자 | https://conversion.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://conversion.com/optimizely-chrome-extension/ |
도움말 페이지 URL | https://conversion.com/downloads/chrome-extension-guide.pdf |
개인정보 보호 정책 페이지 URL | https://conversion.com/privacy |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Conversion.com's Optimizely Chrome Extension", "description": "This extension allows you to learn information about Optimizely on a given page", "version": "1.3550", "author": "James Marchant & Nuno Bento & Natalia Magda", "homepage_url": "http:\/\/conversion.com\/?utm_source=chrome%20extension&utm_medium=chrome%20extension&utm_campaign=chrome%20extension%20clicks", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "browser_action": { "default_icon": "128.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js", "js\/jquery-2.1.3.min.js", "js\/jquery.qrcode-0.12.0.min.js" ], "css": [ "css\/content.css" ], "run_at": "document_start" } ], "background": { "scripts": [ "js\/background.js" ] }, "web_accessible_resources": [ "js\/functions.js", "css\/content.css", "fonts\/*.*", "options.html", "images\/logo.png" ], "permissions": [ "tabs", "cookies", "http:\/\/*\/", "https:\/\/*\/", "clipboardWrite", "storage" ], "content_security_policy": "script-src 'self' https:\/\/docs.google.com https:\/\/ssl.google-analytics.com; object-src 'self'", "options_page": "options.html" } |