Remove Assets

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

ما هو Remove Assets؟

Remove Assets هو إضافة Chrome تم تطويرها بواسطة luisnaia، والميزة الرئيسية لها هي "Actively attempts to remove images, iframes and styles from the current tab, until turned off.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Remove Assets

قم بتنزيل ملفات الامتداد Remove Assets بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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
    }
}