What I see

Show your friends the web page exactly as you see it

Τι είναι το What I see;

Το What I see είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BayTech, και η κύρια λειτουργία του είναι "Show your friends the web page exactly as you see it".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης What I see

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

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

                        A web page cloner tool to copy the page exactly as it appears to you and provides your with a new URL to show it to your friends. Great in situations where the content is behind a pay wall, special authentication, or you just want to show your friends what you're seeing without a screenshot.

===

Sometimes, you read an awesome article online and want to share it with you friend, so you send her the URL of the page, only to get the response "It's behind a paywall".

Or maybe you're logged into some web application and you want to show your friend what the page looks like and let her scroll through as if it was the real thing. It could be the case that you want to show your friend all the items in your Amazon cart before you make the purchase.

Perhaps you'd like to take a screenshot of a page and share it with your friend, but the page is too large and you'd have to keep scrolling and take multiple screenshots and somehow send it over in the right order for it to make sense.

Really, all you wanted to do was show your friend the page exactly as you see it. Not compressed in a Jpeg or chopped up into multiple screenshots, but an actually live web page as you are seeing it.                    

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

Όνομα What I see What I see
ID ghcflgkkdehjaohkbnaeghpjboibdpkn
Επίσημο URL https://chromewebstore.google.com/detail/what-i-see/ghcflgkkdehjaohkbnaeghpjboibdpkn
Περιγραφή Show your friends the web page exactly as you see it
Μέγεθος Αρχείου 139 KB
Αριθμός Εγκαταστάσεων 78
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2016-08-15
Ημερομηνία Δημοσίευσης 2016-08-14
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής BayTech
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "What I see",
    "description": "Show your friends the web page exactly as you see it",
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "string_hasher.js",
                "url_converter.js",
                "jquery.min.js",
                "aws-sdk.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "http:\/\/*\/*\/*",
                "https:\/\/*\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "What I see",
        "default_icon": {
            "19": "19icon.png",
            "38": "38icon.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "16icon.png",
        "48": "48icon.png",
        "128": "128icon.png"
    },
    "manifest_version": 2
}