ytb not-interested button
add do-not-interest button to video.
Τι είναι το ytb not-interested button;
Το ytb not-interested button είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον huhuang03, και η κύρια λειτουργία του είναι "add do-not-interest button to video.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ytb not-interested button
Λήψη αρχείων επέκτασης ytb not-interested button σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
It's boring when you want click the not-interested button in youtube website. You need click the menu button, wait for the popup menu and the click the not-interested button.
This extension is for add the not-interested button in the first level. So you can quick click and save time.
Please notice: you need logined to ytb to let this extension work. Because this extension do the *I not interested* behavior, so need ytb logined.
The source is at https://github.com/huhuang03/ytb_dni.
If you think it's useful, please conside buy me a coffe https://www.buymeacoffee.com/huhuang03 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | okfiigkfppbpfjaiffmllkkfbpdnhofn |
| Επίσημο URL | https://chromewebstore.google.com/detail/ytb-not-interested-button/okfiigkfppbpfjaiffmllkkfbpdnhofn |
| Περιγραφή | add do-not-interest button to video. |
| Μέγεθος Αρχείου | 20.93 KB |
| Αριθμός Εγκαταστάσεων | 1,512 |
| Τρέχουσα Έκδοση | 0.1.4 |
| Τελευταία Ενημέρωση | 2024-01-20 |
| Ημερομηνία Δημοσίευσης | 2021-03-18 |
| Αξιολόγηση | 4.15/5 Συνολικά 41 Αξιολογήσεις |
| Προγραμματιστής | huhuang03 |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ytb not-interested button",
"description": "add do-not-interest button to video.",
"version": "0.1.4",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"add_not_interested.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "ic_not_interested_16.png",
"32": "ic_not_interested_32.png",
"48": "ic_not_interested_48.png",
"128": "ic_not_interested_128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"webNavigation",
"scripting"
],
"host_permissions": [
"https:\/\/www.youtube.com\/"
]
} | |