PDFmyURL

Save any WebPage as PDF

PDFmyURLคืออะไร?

PDFmyURL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pdfmyurl.com และคุณลักษณะหลักของมันคือ "Save any WebPage as PDF"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PDFmyURL

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

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

                        This extension helps you save web pages as PDF when you're browsing. It will try to create a PDF of the page as you are viewing it.

Note - it uses the PDFmyURL.com service so you need to be online to use it.

How to use:

   1 Install the PDFmyURL Extension
   2 Go to the page you wish to PDF
   3 Click the PDFmyURL button
   4 Once the PDF is created, a new tab will open with your PDF

It will work for most pages (also when you're on a protected site or on your local system), but unfortunately not for all pages. Some pages that may not work:

- pages that heavily rely on JavaScript to run locally, such as Gmail
- pages that display a PDF
- pages that are extremely large

We recommend using an AdBlocker when you surf. Since we try to PDF the page as is it means you also don't get the ads in the PDF.

For first time use note that you need to refresh any page that was already open before you installed our extension.

If you want to use this extension to PDF pages on your local file system then please allow our extension access to those files with the following steps:

1 - Visit chrome://extensions
2 - choose "details" on our extension
3 - activate "Allow access to file URLs" and then reload the tab that you wanted to PDF

Please reach out to [email protected] if you find any issues with this extension and we'll be happy to help!                    

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

ชื่อ PDFmyURL PDFmyURL
ID cjlpdkonhfhgkgljmhgdblkneapnngoa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/pdfmyurl/cjlpdkonhfhgkgljmhgdblkneapnngoa
คำอธิบาย Save any WebPage as PDF
ขนาดไฟล์ 214 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-03-05
วันที่เผยแพร่ 2019-03-05
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://pdfmyurl.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://pdfmyurl.com
URL หน้าช่วยเหลือ https://pdfmyurl.com/browser-addons
URL หน้านโยบายความเป็นส่วนตัว https://pdfmyurl.com/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/jquery.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon_16.png",
        "default_popup": "popup.html"
    },
    "description": "Save any WebPage as PDF",
    "icons": {
        "64": "images\/icon_64.png",
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/htmlminifier.min.js",
                "js\/getPagesSource.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2,
    "name": "PDFmyURL",
    "permissions": [
        "tabs",
        "downloads",
        "storage",
        "activeTab",
        "https:\/\/pdfmyurl.com\/*"
    ],
    "version": "1.0"
}