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 |
Eメール | [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\/" ] } |