Wikipedia Inline References
Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.
Wikipedia Inline References là gì?
Wikipedia Inline References là một tiện ích mở rộng Chrome được phát triển bởi Wikipedia Inline References, và tính năng chính của nó là "Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Wikipedia Inline References
Tải xuống các tệp mở rộng Wikipedia Inline References 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
Wikipedia Inline References inserts the reference information that normally appears at the bottom of the page directly next to where it was mentioned, in the flow of the text. This allows the reader to get an idea of what the source of the information they are reading is, without jumping around the page. It also allows the reader to avoid using the tool-tip feature Wikipedia already has, which is useful when reading when not near the mouse, or simply to save the step of hovering the mouse over the reference. By keeping the references in context, this extension allows the reader to verify wiki sources, without losing their spot. Current features: - Highlight the reference info with any color you'd like (or leave it white to have none). -Change the color of the reference text. -Change the color of reference links. Planned features: -Select which information from the citation that you'd like to be inserted (just the link, the title, the author... etc).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | apelegaobhcbjnhfhhhjielpgajjdlij |
URL Chính Thức | https://chrome.google.com/webstore/detail/wikipedia-inline-referenc/apelegaobhcbjnhfhhhjielpgajjdlij |
Mô tả | Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned. |
Kích Thước Tệp | 8.86 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2014-09-30 |
Ngày Phát Hành | 2014-09-30 |
Đánh Giá | 3.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Wikipedia Inline References |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wikipedia Inline References", "version": "0.1", "author": "Wikipedia Inline References", "description": "Information about a source at a glance. Inserts Wikipedia reference information inline, next to where it was mentioned.", "background": { "page": "background.html" }, "icons": { "16": "logo16x16.png", "48": "logo48x48.png", "128": "logo128x128.png" }, "web_accessible_resources": [ "background.html" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/*.wikipedia.org\/*" ], "css": [], "js": [ "script.js" ] } ], "permissions": [ "activeTab", "http:\/\/*\/", "storage" ] } |