Remove Assets
Actively attempts to remove images, iframes and styles from the current tab, until turned off.
Remove Assets là gì?
Remove Assets là một tiện ích mở rộng Chrome được phát triển bởi luisnaia, và tính năng chính của nó là "Actively attempts to remove images, iframes and styles from the current tab, until turned off.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Remove Assets
Tải xuống các tệp mở rộng Remove Assets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lnaimaoofnimhbfiaonkeibgfpolhong |
URL Chính Thức | https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong |
Mô tả | Actively attempts to remove images, iframes and styles from the current tab, until turned off. |
Kích Thước Tệp | 208 KB |
Số Lần Cài Đặt | 113 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2016-04-04 |
Ngày Phát Hành | 2016-04-04 |
Đánh Giá | 4.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | luisnaia |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/darkbls/removeassets |
URL Trang Trợ Giúp | https://github.com/darkbls/removeassets |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |