Tapas RSS Button
A webextension that adds an RSS feed button on tapas.io webcomic pages
Τι είναι το Tapas RSS Button;
Το Tapas RSS Button είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον victal, και η κύρια λειτουργία του είναι "A webextension that adds an RSS feed button on tapas.io webcomic pages".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tapas RSS Button
Λήψη αρχείων επέκτασης Tapas RSS Button σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Tapas.io is a platform for publishing and reading webcomics and webnovels and, while it still provides RSS feeds for the series it hosts, there is no UI component to access these feeds. This webextension restores such functionality, adding an 'RSS' button beside the existing 'Subscribe' buttons that allow for subscribing to a series inside the platform. The only permissions requested by this extension are: - Access to data in https://tapas.io pages, since it is needed to add code to create the RSS button and link it to the series RSS feed on the page. - Storage access to save and restore configurations
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | oaodnnbbhbpcaoliplcpdhipcmgmpnnh |
Επίσημο URL | https://chromewebstore.google.com/detail/tapas-rss-button/oaodnnbbhbpcaoliplcpdhipcmgmpnnh |
Περιγραφή | A webextension that adds an RSS feed button on tapas.io webcomic pages |
Μέγεθος Αρχείου | 70.32 KB |
Αριθμός Εγκαταστάσεων | 277 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2023-04-16 |
Ημερομηνία Δημοσίευσης | 2020-06-30 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | victal |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/victal/tapas-rss/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tapas RSS Button", "version": "1.1.0", "description": "A webextension that adds an RSS feed button on tapas.io webcomic pages", "icons": { "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/tapas.io\/series\/*", "*:\/\/tapas.io\/episode\/*", "*:\/\/m.tapas.io\/series\/*", "*:\/\/m.tapas.io\/episode\/*" ], "js": [ "src\/mutation.js", "src\/add_rss.js", "src\/index.js" ], "css": [ "css\/add_rss.css" ], "all_frames": true } ], "permissions": [ "storage" ], "options_ui": { "page": "src\/options\/index.html" }, "browser_specific_settings": { "gecko": { "id": "{395c081e-9f3b-4218-9587-bcbfa467c3b6}" } } } |