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.”。
擴展截圖
下載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
擴展基本資訊
名稱 | |
ID | lnaimaoofnimhbfiaonkeibgfpolhong |
官方網址 | 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 } } |