Feature Toggle Extension

Helps you working with feature toggles

Feature Toggle Extension란 무엇입니까?

Feature Toggle Extension은(는) Jonathan Fernández에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you working with feature toggles"입니다.

확장 프로그램 스크린샷

screenshot

Feature Toggle Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Every time google chrome visit a website that match one of the supplied patterns, the extension will automatically add a new param to the url query string including the feature toggle.                    

확장 프로그램 기본 정보

이름 Feature Toggle Extension Feature Toggle Extension
ID oailcamkmclecbdgffdeamkknojkecjm
공식 URL https://chromewebstore.google.com/detail/feature-toggle-extension/oailcamkmclecbdgffdeamkknojkecjm
설명 Helps you working with feature toggles
파일 크기 32.71 KB
설치 횟수 43
현재 버전 1.3
최근 업데이트 2021-10-30
출시 날짜 2020-09-15
평점 4.88/5 총 8 개의 평점
개발자 Jonathan Fernández
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Jonathan-JFR/FeatureToggleExtension
지원되는 언어 en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feature Toggle Extension",
    "default_locale": "en",
    "short_name": "FTE",
    "version": "1.3",
    "icons": {
        "128": "images\/extIcon128.png"
    },
    "author": "Jonathan Fern\u00e1ndez",
    "homepage_url": "https:\/\/github.com\/Jonathan-JFR\/FeatureToggleExtension",
    "description": "Helps you working with feature toggles",
    "permissions": [
        "webRequestBlocking",
        "webRequest",
        "declarativeContent",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Feature Toggle Extension",
        "default_icon": {
            "16": "images\/off16.png",
            "32": "images\/off32.png",
            "128": "images\/off128.png"
        }
    },
    "options_page": "options.html",
    "manifest_version": 2
}