Google Full Image Opener

After clicking an image from search results, use the context menu (right-click) to view the current image.

Τι είναι το Google Full Image Opener;

Το Google Full Image Opener είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Arafat Husayn, και η κύρια λειτουργία του είναι "After clicking an image from search results, use the context menu (right-click) to view the current image.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Google Full Image Opener

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

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

                        It brings the original image link opening back on new Google Images website.

How to use:

After clicking an image from search results, use the context menu (right-click) to view the current image in a new tab.                    

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

Όνομα Google Full Image Opener Google Full Image Opener
ID beojccknfoajfebcpijalgejjpbdipcb
Επίσημο URL https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb
Περιγραφή After clicking an image from search results, use the context menu (right-click) to view the current image.
Μέγεθος Αρχείου 39.81 KB
Αριθμός Εγκαταστάσεων 78
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2020-08-15
Ημερομηνία Δημοσίευσης 2020-02-05
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Arafat Husayn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Full Image Opener",
    "short_name": "google-full-image-opener",
    "description": "After clicking an image from search results, use the context menu (right-click) to view the current image.",
    "version": "2.0",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "https:\/\/www.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    }
}