Permanent Inspect Element

Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing

Τι είναι το Permanent Inspect Element;

Το Permanent Inspect Element είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mehran Jalali, και η κύρια λειτουργία του είναι "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Permanent Inspect Element

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

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

                        This extension lets you save the changes you make to a static web page using Inspect Element to remain there even after you refresh the page.  So if you want to modify a web page to make it easier for you to read, or to remove an intrusive banner, you can do that, and you wouldn't have to re-do it every time you visit the page again.

Of course, this only changes the content of the page on *your* computer and not the website itself.                    

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

Όνομα Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
Επίσημο URL https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Περιγραφή Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Μέγεθος Αρχείου 109 KB
Αριθμός Εγκαταστάσεων 71,918
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2020-08-11
Ημερομηνία Δημοσίευσης 2020-08-03
Αξιολόγηση 2.92/5 Συνολικά 204 Αξιολογήσεις
Προγραμματιστής Mehran Jalali
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Permanent Inspect Element",
    "version": "0.1.1",
    "description": "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}