Javascript Toggle

A really simple, clean and lightweight extension for toggling the Javascript setting on any page.

Co to jest Javascript Toggle?

Javascript Toggle to rozszerzenie Chrome opracowane przez Kai Yuan, a jego główną funkcją jest „A really simple, clean and lightweight extension for toggling the Javascript setting on any page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Javascript Toggle

Pobierz pliki rozszerzeń Javascript Toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Just press Ctrl+I on Windows/Linux or Cmd + J on Mac, or click on the extension icon to toggle the Javascript setting for the page in the current tab.

Do you prefer to review and compile the code yourself? No problem, the code is open-sourced at https://github.com/thngkaiyuan/js-toggle/tree/master.                    

Podstawowe informacje o rozszerzeniu

Nazwa Javascript Toggle Javascript Toggle
ID mdjbjncpgebfmegaljihajkedlaajeja
Oficjalny URL https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja
Opis A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Rozmiar pliku 39.36 KB
Liczba instalacji 232
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2019-05-04
Data Publikacji 2019-05-04
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Kai Yuan
Typ Płatności free
Strona Rozszerzenia https://github.com/thngkaiyuan/js-toggle/tree/master
Adres URL Strony Pomocy https://github.com/thngkaiyuan/js-toggle/tree/master
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Javascript Toggle",
    "version": "1.5",
    "description": "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.",
    "permissions": [
        "tabs",
        "contentSettings"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-js": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+J"
            },
            "description": "Toggle the Javascript setting on this page."
        }
    },
    "icons": {
        "16": "images\/allow-16.png",
        "32": "images\/allow-32.png",
        "48": "images\/allow-48.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/allow-16.png",
            "32": "images\/allow-32.png",
            "48": "images\/allow-48.png"
        },
        "default_title": "Toggle the Javascript setting on any page with ease."
    },
    "manifest_version": 2
}