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 |
官方網址 | 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\/" ] } |