Remove Citations
Remove the citations found on Wikipedia pages
Τι είναι το Remove Citations;
Το Remove Citations είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mileung.com, και η κύρια λειτουργία του είναι "Remove the citations found on Wikipedia pages".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Remove Citations
Λήψη αρχείων επέκτασης Remove Citations σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This simple Chrome Extension removes the citations found on Wikipedia articles.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Remove Citations |
ID | ojmmohmckbjmbpjpdohkfmhnkfedbofp |
Επίσημο URL | https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp |
Περιγραφή | Remove the citations found on Wikipedia pages |
Μέγεθος Αρχείου | 20.74 KB |
Αριθμός Εγκαταστάσεων | 1,098 |
Τρέχουσα Έκδοση | 1.3 |
Τελευταία Ενημέρωση | 2018-01-08 |
Ημερομηνία Δημοσίευσης | 2018-01-08 |
Αξιολόγηση | 4.33/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | https://mileung.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://mileung.com/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Citations", "description": "Remove the citations found on Wikipedia pages", "version": "1.3", "background": { "scripts": [ "src\/background.js" ] }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.wikipedia.org\/*" ], "js": [ "src\/content.js" ] } ], "permissions": [ "tabs", "storage", "https:\/\/*.wikipedia.org\/*", "https:\/\/ajax.googleapis.com\/" ] } |