Email Print Page Cleaner

Removes some things from the Email print pages (ie: Gmail, Mail.com) to make them cleaner

Email Print Page Cleanerคืออะไร?

Email Print Page Cleaner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jhvisser.com และคุณลักษณะหลักของมันคือ "Removes some things from the Email print pages (ie: Gmail, Mail.com) to make them cleaner"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Email Print Page Cleaner

ดาวน์โหลดไฟล์ส่วนขยาย Email Print Page Cleaner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allows you to choose to remove the following from the Gmail and Mail.com print page:
- Hide the Gmail/Mail.com logo
- Hide your email address (may not work with Mail.com)
- Hide the subject (may not work with Mail.com)
- Hide the sender details (may not work with Mail.com)

Latest update now includes Mail.com support! It is beta so may have some issues! The Gmail support still works fine. If Chrome warns you about a permissions change this is because I had to add mail.com as an a site the extension can access, and I altered the Gmail access a little to cover some cases where it may not have been running when it should have been.

Confused with how to access these options? Check out the post below:
https://jhvisser.com/email-print-page-cleaner-updated-v1-1/

Latest update post:
https://jhvisser.com/email-print-page-cleaner-updated-v1-1/

Source (Github):
https://github.com/Fogest/Email-Print-Page-Cleaner

Problem or Bug?
Email: [email protected]

Updates:
v1.3.0:
- Switching to different method of removal that should fix problems with GAPPS.
v1.2.5:
- Fixing a problem with Google Apps not being properly supported with logo removal.
v1.2.2:
- Fixing a problem with the mail.com integration. It should now be working properly. There was a permissions problem. You may notice a permissions request on this update.
v1.2:
- Added a mail.com support (beta). This is a test of support for mail.com and it may not work properly. Feel free to contact me if there are problems via the email "[email protected]". 
v1.1:
- An options page has been added allowing you to choose what you'd like to remove.
- More options for things to remove
v1.0.2:
- Fixed issue with not removing the logo                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Email Print Page Cleaner Email Print Page Cleaner
ID hbcdmmaobjagbplobejomeefggahclkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/email-print-page-cleaner/hbcdmmaobjagbplobejomeefggahclkf
คำอธิบาย Removes some things from the Email print pages (ie: Gmail, Mail.com) to make them cleaner
ขนาดไฟล์ 57.78 KB
จำนวนการติดตั้ง 2,112
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2019-05-21
วันที่เผยแพร่ 2019-05-21
คะแนน 4.00/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา https://jhvisser.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jhvisser.com
URL หน้าช่วยเหลือ https://github.com/Fogest/Email-Print-Page-Cleaner/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email Print Page Cleaner",
    "version": "1.3.0",
    "description": "Removes some things from the Email print pages (ie: Gmail, Mail.com) to make them cleaner",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "*:\/\/mail.google.com\/*",
        "*:\/\/*.mail.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "*:\/\/*.mail.com\/*"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}