Site Cycler
Navigate through your favorite sites with ease
Qu'est-ce que Site Cycler ?
Site Cycler est une extension Chrome développée par Bohdan Stasiuk, et sa fonction principale est "Navigate through your favorite sites with ease".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Site Cycler
Téléchargez les fichiers d'extension Site Cycler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Site Cycler |
ID | domafifjljmmbceapbjdecmgkjflanfo |
URL Officiel | https://chromewebstore.google.com/detail/site-cycler/domafifjljmmbceapbjdecmgkjflanfo |
Description | Navigate through your favorite sites with ease |
Taille du Fichier | 30.19 KB |
Nombre d'Installations | 11 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2017-01-01 |
Date de Publication | 2017-01-01 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Bohdan Stasiuk |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |