Page Plain Text

Chrome extension that shows page plain text and allows you to edit or download the text

Page Plain Text क्या है?

Page Plain Text https://www.vincenzodevivo.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that shows page plain text and allows you to edit or download the text"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Page Plain Text एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        [Features]
- Shows page plain text (keyboard shortcut: Ctrl + Shift + 1)
- Extracts text from the selection on the page
- Text editing
- Download page plain text (keyboard shortcut: Ctrl + Shift + 2)
- Removes all formatting from text
- Removes all advertising to focus only on the content of the text
- Copy text to use it in other documents (keyboard shortcut: Ctrl + Shift + 3)
- Zoom In and Zoom Out text to improve legibility (keyboard shortcut: Ctrl + ➕ / Ctrl + ➖)
- Contextual menu to quickly copy or download the plain text of the current page
- Dark Mode color scheme

[Keyboard Shortcuts]
To change the keyboard shortcuts of the extensions you can go here: chrome://extensions/shortcuts

[Links]
- My Home page: https://www.vincenzodevivo.com/
- My GitHub: https://github.com/deltavi

☕BUY ME A COFFEE
Want to buy me a coffee? By all means! Visit 
https://www.buymeacoffee.com/vincenzodevivo or https://www.paypal.com/paypalme/VincenzoDeVivoAutore

... or you can buy my books on Amazon 📚 www.amazon.it/Vincenzo-De-Vivo/e/B09MPTBBFY                    

एक्सटेंशन की मूल जानकारी

नाम Page Plain Text Page Plain Text
ID bephhamcfencdbjmlinkpapidliffpdg
आधिकारिक URL https://chromewebstore.google.com/detail/page-plain-text/bephhamcfencdbjmlinkpapidliffpdg
विवरण Chrome extension that shows page plain text and allows you to edit or download the text
फ़ाइल का आकार 2.05 MB
स्थापना संख्या 2,000
वर्तमान संस्करण 1.2
अंतिम अपडेट 2023-08-19
प्रकाशन तिथि 2017-11-01
रेटिंग 4.67/5 कुल 6 रेटिंग्स
डेवलपर https://www.vincenzodevivo.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/deltavi/chrome-extension-plain-text
सहायता पृष्ठ URL https://github.com/deltavi/chrome-extension-plain-text
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Plain Text",
    "description": "Chrome extension that shows page plain text and allows you to edit or download the text",
    "version": "1.2",
    "permissions": [
        "activeTab",
        "scripting",
        "contextMenus",
        "downloads",
        "clipboardWrite"
    ],
    "icons": {
        "16": "ico\/btn_circle_text.16x16.png",
        "20": "ico\/btn_circle_text.20x20.png",
        "24": "ico\/btn_circle_text.24x24.png",
        "32": "ico\/btn_circle_text.32x32.png",
        "48": "ico\/btn_circle_text.48x48.png",
        "64": "ico\/btn_circle_text.64x64.png",
        "128": "ico\/btn_circle_text.128x128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Show page plain text",
        "default_icon": {
            "16": "ico\/btn_circle_text.16x16.png",
            "20": "ico\/btn_circle_text.20x20.png",
            "24": "ico\/btn_circle_text.24x24.png",
            "32": "ico\/btn_circle_text.32x32.png",
            "48": "ico\/btn_circle_text.48x48.png",
            "64": "ico\/btn_circle_text.64x64.png",
            "128": "ico\/btn_circle_text.128x128.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            }
        },
        "download-text": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "Download page plain text"
        },
        "copy-text": {
            "suggested_key": {
                "default": "Ctrl+Shift+3",
                "mac": "Command+Shift+3"
            },
            "description": "Copy page plain text"
        }
    },
    "manifest_version": 3
}