Site Cycler

Navigate through your favorite sites with ease

Τι είναι το Site Cycler;

Το Site Cycler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bohdan Stasiuk, και η κύρια λειτουργία του είναι "Navigate through your favorite sites with ease".

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

screenshot

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

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

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

                        Add a list of your favorite sites to the text field at the options of Site Cycler. Click on the extension's icon. If there's no open tab with any site from the list it'll be opened. If tab is already exist but not selected it'll be selected. If tab with site's page is opened and selected it'll be redirected to the next station from the list.

v.1.3
Added ability to pin tab as additional option

v.1.1
1. Changed icon and name
2. Added ability to switch between pages on the same domain                    

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

Όνομα Site Cycler Site Cycler
ID domafifjljmmbceapbjdecmgkjflanfo
Επίσημο URL https://chromewebstore.google.com/detail/site-cycler/domafifjljmmbceapbjdecmgkjflanfo
Περιγραφή Navigate through your favorite sites with ease
Μέγεθος Αρχείου 30.19 KB
Αριθμός Εγκαταστάσεων 11
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2017-01-01
Ημερομηνία Δημοσίευσης 2017-01-01
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Bohdan Stasiuk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Site Cycler",
    "description": "Navigate through your favorite sites with ease",
    "version": "1.3",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "BSChromeConsole.js",
                "BSStringHelper.js",
                "RNStations.js",
                "RNLocalStoreHelper.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "BSChromeConsole.js",
            "BSStringHelper.js",
            "RNStations.js",
            "onClick.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "*:\/\/*\/*",
        "storage"
    ],
    "web_accessible_resources": [],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}