Remove Assets

Actively attempts to remove images, iframes and styles from the current tab, until turned off.

Co je Remove Assets?

Remove Assets je rozšíření Chrome vyvinuté luisnaia, a jeho hlavní funkcí je „Actively attempts to remove images, iframes and styles from the current tab, until turned off.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Remove Assets

Stáhněte si soubory rozšíření Remove Assets ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This simple extension will attempt to remove assets from the current tab, until turned off.

It can remove every image, iframes and style sheets and/or in-line styles elements in your current tab. You can define this in options page. 
By default it will attempt to remove images.

It can be toggled on/off by clicking on it. 
Once you turned it off, you may refresh your page to return the original assets.

https://github.com/darkbls/removeimages                    

Základní Informace o Rozšíření

Název Remove Assets Remove Assets
ID lnaimaoofnimhbfiaonkeibgfpolhong
Oficiální URL https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong
Popis Actively attempts to remove images, iframes and styles from the current tab, until turned off.
Velikost souboru 208 KB
Počet instalací 113
Aktuální Verze 1.2.1
Poslední Aktualizace 2016-04-04
Datum Vydání 2016-04-04
Hodnocení 4.83/5 Celkem 6 Hodnocení
Vývojář luisnaia
Typ Platby free
Webové stránky Rozšíření https://github.com/darkbls/removeassets
URL Stránky Nápovědy https://github.com/darkbls/removeassets
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Assets",
    "short_name": "Remove Assets",
    "description": "Actively attempts to remove images, iframes and styles from the current tab, until turned off.",
    "version": "1.2.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Remove Assets - Click to toggle"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}