Remove Assets

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

什么是Remove Assets?

Remove Assets是由luisnaia开发的Chrome扩展程序,该扩展的主要功能是“Actively attempts to remove images, iframes and styles from the current tab, until turned off.”。

扩展截图

screenshot

下载Remove Assets扩展crx文件

下载Remove Assets扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Remove Assets Remove Assets
ID lnaimaoofnimhbfiaonkeibgfpolhong
官方URL https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong
简介 Actively attempts to remove images, iframes and styles from the current tab, until turned off.
文件大小 208 KB
安装次数 113
当前版本 1.2.1
更新时间 2016-04-04
上架时间 2016-04-04
评分 4.83/5 共6次评分
开发者 luisnaia
付费类型 free
扩展官网 https://github.com/darkbls/removeassets
帮助页面URL https://github.com/darkbls/removeassets
支持的语言 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
    }
}