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 |
| 公式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
}
} | |