Stealth Mode
Removes like buttons and comment buttons from social media websites.
什么是Stealth Mode?
Stealth Mode是由Victor Williams开发的Chrome扩展程序,该扩展的主要功能是“Removes like buttons and comment buttons from social media websites.”。
下载Stealth Mode扩展crx文件
下载Stealth Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | Stealth Mode |
ID | nokegfiejgddoepimjhieebcelanmkjf |
官方URL | https://chromewebstore.google.com/detail/stealth-mode/nokegfiejgddoepimjhieebcelanmkjf |
简介 | Removes like buttons and comment buttons from social media websites. |
文件大小 | 40.49 KB |
安装次数 | 13 |
当前版本 | 1.0.0 |
更新时间 | 2016-02-29 |
上架时间 | 2016-02-28 |
开发者 | Victor Williams |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://devpost.com/software/sneaky |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stealth Mode", "description": "Removes like buttons and comment buttons from social media websites.", "version": "1.0.0", "icons": { "128": "stealth.png" }, "permissions": [ "https:\/\/www.facebook.com\/", "http:\/\/www.facebook.com\/", "https:\/\/www.twitter.com\/", "http:\/\/www.twitter.com\/", "https:\/\/www.instagram.com\/", "http:\/\/www.instagram.com\/", "https:\/\/www.tumblr.com\/", "http:\/\/www.tumblr.com\/", "https:\/\/www.linkedin.com\/", "http:\/\/www.linkedin.com\/", "https:\/\/www.github.com\/", "http:\/\/www.github.com\/" ], "content_scripts": [ { "matches": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*", "http:\/\/www.twitter.com\/*", "https:\/\/www.twitter.com\/*", "http:\/\/www.instagram.com\/*", "https:\/\/www.instagram.com\/*", "http:\/\/www.tumblr.com\/*", "https:\/\/www.tumblr.com\/*", "http:\/\/www.linkedin.com\/*", "https:\/\/www.linkedin.com\/*", "http:\/\/www.github.com\/*", "https:\/\/www.github.com\/*" ], "js": [ "jquery-2.2.0.min.js", "stealth.js" ] } ], "page_action": { "default_title": "Stealth", "default_icon": "stealth.png" } } |