PageChopper
Modify current page for printing.
PageChopper là gì?
PageChopper là một tiện ích mở rộng Chrome được phát triển bởi https://brispace.us, và tính năng chính của nó là "Modify current page for printing.".
Ả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 PageChopper
Tải xuống các tệp mở rộng PageChopper 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
PageChopper is my attempt to recreate an old extension called Aardvark that allowed the user to remove elements from the current web page in order to make it better for printing. You move your mouse pointer over an item and press a key (for example 'r' to remove the item). A list of the command keys is displayed whenever you activate the extension. You may remove items, isolate an item (i.e. remove all other items), convert the page to black and white, remove all images, or remove extra whitespace. You may undo any of your changes.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PageChopper |
ID | bcdjdbiiohahlfdochlfbbplnfgakhmk |
URL Chính Thức | https://chromewebstore.google.com/detail/pagechopper/bcdjdbiiohahlfdochlfbbplnfgakhmk |
Mô tả | Modify current page for printing. |
Kích Thước Tệp | 11.18 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-02-27 |
Ngày Phát Hành | 2018-02-27 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://brispace.us |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://brispace.us/blog/title/Modify_Web_Pages_For_Printing_With_PageChopper |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PageChopper", "description": "Modify current page for printing.", "version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_title": "Modify page for printing" }, "permissions": [ "activeTab" ] } |