Remove Assets

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

Remove Assets क्या है?

Remove Assets luisnaia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Actively attempts to remove images, iframes and styles from the current tab, until turned off."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Remove Assets एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}