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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove Assets
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } } |