Destroy It!
Toggle the ability to destroy any ads or annoying elements of a webpage.
什么是Destroy It!?
Destroy It!是由thejackcohen开发的Chrome扩展程序,该扩展的主要功能是“Toggle the ability to destroy any ads or annoying elements of a webpage.”。
扩展截图
下载Destroy It!扩展crx文件
下载Destroy It!扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | ijikkmpakihdnnccdjpcbfomojdfbjhj |
官方URL | https://chrome.google.com/webstore/detail/destroy-it/ijikkmpakihdnnccdjpcbfomojdfbjhj |
简介 | Toggle the ability to destroy any ads or annoying elements of a webpage. |
文件大小 | 80.51 KB |
安装次数 | 4,851 |
当前版本 | 1.0 |
更新时间 | 2015-12-27 |
上架时间 | 2015-12-27 |
评分 | 2.26/5 共19次评分 |
开发者 | thejackcohen |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Destroy It!", "short_name": "Destroy It!", "description": "Toggle the ability to destroy any ads or annoying elements of a webpage.", "version": "1.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png", "256": "images\/icon256.png" }, "browser_action": { "default_icon": "images\/icon128.png", "default_popup": "src\/popup.html", "default_title": "Destroy It!" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/destroy.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ] } |