IncognitoDeathTimer
IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout
Τι είναι το IncognitoDeathTimer;
Το IncognitoDeathTimer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον azimbin, και η κύρια λειτουργία του είναι "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης IncognitoDeathTimer
Λήψη αρχείων επέκτασης IncognitoDeathTimer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will automatically close out of any incognito tabs after a certain amount of time and either replace the page with google or have it display a message of your choosing.
Lets say you are looking at cornhub.com and you suddenly die. Your friends come in the door after a week and are like "wtf? hes dead, and he is watching CobDestroyers 3some pt. 4 on his laptop" Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | jnpnkeaadjmmioeplgpgbpmdjdhebfgb |
| Επίσημο URL | https://chromewebstore.google.com/detail/incognitodeathtimer/jnpnkeaadjmmioeplgpgbpmdjdhebfgb |
| Περιγραφή | IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout |
| Μέγεθος Αρχείου | 13.45 KB |
| Αριθμός Εγκαταστάσεων | 46 |
| Τρέχουσα Έκδοση | 1.0 |
| Τελευταία Ενημέρωση | 2016-06-07 |
| Ημερομηνία Δημοσίευσης | 2016-06-07 |
| Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
| Προγραμματιστής | azimbin |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "IncognitoDeathTimer",
"version": "1.0",
"description": "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout ",
"permissions": [
"http:\/\/*.com\/",
"tabs",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"script.js"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_popup": "options.html",
"default_icon": "icon.png",
"default_title": "Closes any Incognito window open for more than an hour"
}
} | |