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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}