Instructables+

Automatically shows all steps for Instructables

Co to jest Instructables+?

Instructables+ to rozszerzenie Chrome opracowane przez Chris C, a jego główną funkcją jest „Automatically shows all steps for Instructables”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Instructables+

Pobierz pliki rozszerzeń Instructables+ 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

                        This plugin was designed to redirect your browser to the page that shows all steps for an Instructable!                    

Podstawowe informacje o rozszerzeniu

Nazwa Instructables+ Instructables+
ID aahehhoaebjhnmploicennmcopefepii
Oficjalny URL https://chromewebstore.google.com/detail/instructables+/aahehhoaebjhnmploicennmcopefepii
Opis Automatically shows all steps for Instructables
Rozmiar pliku 261 KB
Liczba instalacji 104
Aktualna Wersja 0.1.2.0
Ostatnia Aktualizacja 2016-12-29
Data Publikacji 2016-12-29
Ocena 3.67/5 Łącznie 6 Oceny
Deweloper Chris C
Typ Płatności free
Strona Rozszerzenia http://chriscarini.com
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instructables+",
    "manifest_version": 2,
    "description": "Automatically shows all steps for Instructables",
    "version": "0.1.2.0",
    "content_scripts": [
        {
            "js": [
                "Instructables.js"
            ],
            "matches": [
                "http:\/\/www.instructables.com\/id*"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png",
        "48": "icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js ; object-src 'self'",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}