Show Content Only

Show an element content without scroll

Τι είναι το Show Content Only;

Το Show Content Only είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://qisops.com, και η κύρια λειτουργία του είναι "Show an element content without scroll".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Show Content Only

Λήψη αρχείων επέκτασης Show Content Only σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension makes a specified part of web page to be easily viewed in a new tab or window without scrolling or zooming the whole web page.
If a web page's style sheet makes its content hard to read, you can right click on the content part and select the context menu's Show Content Only, the content will be showed in a new tab or window with the plain text.
Sometime if you want to print some content but the page is displayed as multiple columns format, you can use this function to show the primary content in a new page and print it. This can save your paper and makes it easily to be read.

If the new page does not include all your primary content, you can change the mouse pointer's position to a larger area and run this function again.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Show Content Only Show Content Only
ID bopicafkhkhaphihlgdcfmnbhpokjpcf
Επίσημο URL https://chromewebstore.google.com/detail/show-content-only/bopicafkhkhaphihlgdcfmnbhpokjpcf
Περιγραφή Show an element content without scroll
Μέγεθος Αρχείου 63.55 KB
Αριθμός Εγκαταστάσεων 121
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2020-04-11
Ημερομηνία Δημοσίευσης 2020-04-11
Προγραμματιστής https://qisops.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://qisops.com/?page_id=297
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Content Only",
    "description": "Show an element content without scroll",
    "version": "1.0.6",
    "author": "Shangwu",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "images\/i16.png",
        "48": "images\/i48.png",
        "128": "images\/i128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ]
}