Tab Reloader

This extension will reload current browser tab after message from node.js

Τι είναι το Tab Reloader;

Το Tab Reloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον markiyan.pyts, και η κύρια λειτουργία του είναι "This extension will reload current browser tab after message from node.js".

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

Λήψη αρχείου CRX της επέκτασης Tab Reloader

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

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

                        Chrome tab reloader plugin is Livereload alternative for non localhost working environments. 

So if you work in cloud based environment where you can only see the code result after it uploads to server,
This plugin shall help you to reload the Chrome tab once your code is uploaded.

It shall work for you if you are using task runner like gulp,

In gulp you need to use use Node plugin server side https://www.npmjs.com/package/chrome-tab-reloader

Also you need any other npm tool to pair up with https://www.npmjs.com/package/chrome-tab-reloader which uploads your code to server and gives you callback on this action with filename of a file which has just uploaded to server.

Please check out https://www.npmjs.com/package/chrome-tab-reloader documentation to see code example for gulp file.

Once chromeTabReloader is installed in your browser you can click on the green circle icon in your extensions bar, it shall establish connection with running gulp process.

The tab on which you where while activating plugin shall be the one to reload once new file upload is spotted. You can activate it for multiple tabs at once.

If you spot some trouble please create an issue on this repo with steps to reproduce:
https://github.com/DarthMarcius/ChromeTabReloader                    

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

Όνομα Tab Reloader Tab Reloader
ID mnbfmcaflfdkgoaaggbpkhchojeinjpm
Επίσημο URL https://chrome.google.com/webstore/detail/tab-reloader/mnbfmcaflfdkgoaaggbpkhchojeinjpm
Περιγραφή This extension will reload current browser tab after message from node.js
Μέγεθος Αρχείου 27.4 KB
Αριθμός Εγκαταστάσεων 154
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2018-02-11
Ημερομηνία Δημοσίευσης 2018-02-11
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής markiyan.pyts
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Reloader",
    "description": "This extension will reload current browser tab after message from node.js",
    "version": "1.0",
    "browser_action": {
        "default_icon": {
            "16": "img\/icon_disabled_16.png",
            "24": "img\/icon_disabled_24.png",
            "32": "img\/icon_disabled_32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/css_reloader.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/tab_reloader.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "img\/tab_reloader_logo_16.png",
        "32": "img\/tab_reloader_logo_32.png",
        "48": "img\/tab_reloader_logo_48.png",
        "128": "img\/tab_reloader_logo_128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "nativeMessaging",
        "storage"
    ]
}