Pkgsrc Freeze Status
Shows status of Pkgsrc freeze
Qu'est-ce que Pkgsrc Freeze Status ?
Pkgsrc Freeze Status est une extension Chrome développée par Travis Paul, et sa fonction principale est "Shows status of Pkgsrc freeze".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pkgsrc Freeze Status
Téléchargez les fichiers d'extension Pkgsrc Freeze Status 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
Shows the status of a pkgsrc freeze. The typical orange Pkgsrc icon is shown if there is no freeze and a blue icon is shown if there is a freeze. Now there's no excuse to say you didn't know the Pkgsrc tree was frozen! Technical Details: This extension uses the chrome alarm API to make a HEAD request to http://www.pkgsrc.org/is-a-freeze-on/ to see if there is currently a pkgsrc freeze. If the ETag changes (or on the first request) we make a full GET and parse the document body to see if there is a freeze.
Informations de Base sur l'Extension
Nom | Pkgsrc Freeze Status |
ID | hkjbalmocmojflppelljlnjpcmkbidph |
URL Officiel | https://chromewebstore.google.com/detail/pkgsrc-freeze-status/hkjbalmocmojflppelljlnjpcmkbidph |
Description | Shows status of Pkgsrc freeze |
Taille du Fichier | 41.21 KB |
Nombre d'Installations | 59 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2016-01-05 |
Date de Publication | 2016-01-05 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Travis Paul |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/TravisPaul/crx-pkgsrc-freeze |
URL de la Page d'Aide | https://github.com/TravisPaul/crx-pkgsrc-freeze/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "version": "1.0.0", "manifest_version": 2, "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "img\/16-pkgsrc.png", "19": "img\/19-pkgsrc.png", "48": "img\/48-pkgsrc.png", "128": "img\/128-pkgsrc.png" }, "browser_action": { "default_icon": { "19": "img\/19-default.png", "38": "img\/38-default.png" }, "default_title": "__MSG_status_unknown__" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "http:\/\/www.pkgsrc.org\/is-a-freeze-on\/", "alarms" ], "offline_enabled": false } |