New Chrome extension source viewer

View source code of Chrome extensions, Firefox addons or Opera extensions (crx/nex/xpi) from the Chrome web store and elsewhere.

Τι είναι το New Chrome extension source viewer;

Το New Chrome extension source viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον clsyy411, και η κύρια λειτουργία του είναι "View source code of Chrome extensions, Firefox addons or Opera extensions (crx/nex/xpi) from the Chrome web store and elsewhere.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης New Chrome extension source viewer

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

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

                        View source code of Chrome extensions, Firefox addons or Opera extensions (crx/nex/xpi) from the Chrome web store and elsewhere.

View the source code of any Chrome extension in the Chrome Web store without installing it.

Features:
- Button at the Chrome Web store
  - Download extension as zip file
  - View source
  - Configurable via context menu on button: Set one-click action via "primary action on click".
- View source:
  - File name/type filter
  - Search in the file content (literal or regexp)
  - Automatic beautification (formatting) of code
  - Syntax highlighting
  - Show hashes (md5, sha1, sha256, sha384, sha512) of individual files
  - Image preview
  - View embedded zip files
  - View any zip file by URL or file chooser
  - View source of platform-specific extensions (such as Chrome OS-only extensions, or NaCl for a different architecture).
  - Permalink to file and search result within a zip or extension file.
- Full support for incognito mode.
- Outputs public key and extension ID to the console.

Optional features (see options page):
- View source of Opera 15+ extensions, Edge extensions, Firefox addons or Thunderbird add-ons.
- "View extension source" contextmenu item on links to Chrome extensions
- View source of Chrome extensions outside the webstore. The View source button becomes visible when you select a CRX file for download.                    

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

Όνομα New Chrome extension source viewer New Chrome extension source viewer
ID gcabadpmgoapggkhhiccllcgcjpmjodf
Επίσημο URL https://chromewebstore.google.com/detail/new-chrome-extension-sour/gcabadpmgoapggkhhiccllcgcjpmjodf
Περιγραφή View source code of Chrome extensions, Firefox addons or Opera extensions (crx/nex/xpi) from the Chrome web store and elsewhere.
Μέγεθος Αρχείου 220 KB
Αριθμός Εγκαταστάσεων 44
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2023-12-15
Ημερομηνία Δημοσίευσης 2023-12-15
Προγραμματιστής clsyy411
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "New CRX Viewer",
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "version": "1.0.0",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "service_worker.js"
    },
    "action": {
        "default_icon": {
            "128": "icons\/128.png"
        },
        "default_title": "__MSG_appDesc__",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/128.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html#optionsV2"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "downloads",
        "declarativeContent"
    ],
    "host_permissions": [
        "*:\/\/clients2.google.com\/service\/update2\/crx*",
        "*:\/\/clients2.googleusercontent.com\/crx\/download\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "incognito": "split"
}