Remove Citations
Remove the citations found on Wikipedia pages
什么是Remove Citations?
Remove Citations是由https://mileung.com开发的Chrome扩展程序,该扩展的主要功能是“Remove the citations found on Wikipedia pages”。
扩展截图
下载Remove Citations扩展crx文件
下载Remove Citations扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This simple Chrome Extension removes the citations found on Wikipedia articles.
扩展基本信息
名称 | Remove Citations |
ID | ojmmohmckbjmbpjpdohkfmhnkfedbofp |
官方URL | https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp |
简介 | Remove the citations found on Wikipedia pages |
文件大小 | 20.74 KB |
安装次数 | 1,098 |
当前版本 | 1.3 |
更新时间 | 2018-01-08 |
上架时间 | 2018-01-08 |
评分 | 4.33/5 共9次评分 |
开发者 | https://mileung.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://mileung.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Citations", "description": "Remove the citations found on Wikipedia pages", "version": "1.3", "background": { "scripts": [ "src\/background.js" ] }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.wikipedia.org\/*" ], "js": [ "src\/content.js" ] } ], "permissions": [ "tabs", "storage", "https:\/\/*.wikipedia.org\/*", "https:\/\/ajax.googleapis.com\/" ] } |