Web Stripper

Turn off CSS and JS on the fly!

Vad är Web Stripper?

Web Stripper är en Chrome-tillägg utvecklad av Andrey Shevyakov, och dess huvudfunktion är "Turn off CSS and JS on the fly!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Web Stripper-förlängningens CRX-fil

Ladda ner Web Stripper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        "Web Stripper" is a neat tiny Chrome extension that provides the web-development assistance functionality.

Current features:
* Disable CSS
* Disable JS

Feel free to leave the feedback suggesting the features to implement in the future versions.                    

Grundläggande Information om Tillägg

Namn Web Stripper Web Stripper
ID lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Officiell webbadress https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Beskrivning Turn off CSS and JS on the fly!
Filstorlek 137 KB
Antal Installationer 33
Aktuell Version 1.0
Senast Uppdaterad 2020-05-28
Publiceringsdatum 2020-05-27
Utvecklare Andrey Shevyakov
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan http://zitri.tech/privacy/chrome
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Stripper",
    "short_name": "Web Stripper",
    "description": "Turn off CSS and JS on the fly!",
    "version": "1.0",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_title": "CSS And JS Stripper"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "persistent": false,
        "page": "html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "script\/loader.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "src\/*",
        "img\/*",
        "font\/*"
    ]
}