Feature Toggle Extension

Helps you working with feature toggles

Feature Toggle Extension là gì?

Feature Toggle Extension là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Fernández, và tính năng chính của nó là "Helps you working with feature toggles".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Feature Toggle Extension

Tải xuống các tệp mở rộng Feature Toggle Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Feature Toggle Extension Feature Toggle Extension
ID oailcamkmclecbdgffdeamkknojkecjm
URL Chính Thức https://chromewebstore.google.com/detail/feature-toggle-extension/oailcamkmclecbdgffdeamkknojkecjm
Mô tả Helps you working with feature toggles
Kích Thước Tệp 32.71 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2021-10-30
Ngày Phát Hành 2020-09-15
Đánh Giá 4.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Jonathan Fernández
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Jonathan-JFR/FeatureToggleExtension
Ngôn Ngữ Được Hỗ Trợ 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
}