Remove Citations

Remove the citations found on Wikipedia pages

Remove Citations là gì?

Remove Citations là một tiện ích mở rộng Chrome được phát triển bởi https://mileung.com, và tính năng chính của nó là "Remove the citations found on Wikipedia pages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Remove Citations

Tải xuống các tệp mở rộng Remove Citations dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This simple Chrome Extension removes the citations found on Wikipedia articles.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Remove Citations Remove Citations
ID ojmmohmckbjmbpjpdohkfmhnkfedbofp
URL Chính Thức https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp
Mô tả Remove the citations found on Wikipedia pages
Kích Thước Tệp 20.74 KB
Số Lần Cài Đặt 1,098
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2018-01-08
Ngày Phát Hành 2018-01-08
Đánh Giá 4.33/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://mileung.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://mileung.com/
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}