Laconic Hover for TV Tropes

Did you know that most tropes have thoughtfully written summaries? This extension lets you read them without leaving the page.

Τι είναι το Laconic Hover for TV Tropes;

Το Laconic Hover for TV Tropes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Spooky User, και η κύρια λειτουργία του είναι "Did you know that most tropes have thoughtfully written summaries? This extension lets you read them without leaving the page.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Laconic Hover for TV Tropes

Λήψη αρχείων επέκτασης Laconic Hover for TV Tropes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This is a simple, open source extension which makes browsing TV Tropes *a lot* easier by showing you simple explanations of links on TV Tropes, without you having to leave the page you're browsing. This is done by displaying the laconic text, for pages which have them, in a popover on links linking to Tropes. 

This helps if you haven't happened to memorize every trope yet, or if you just want to know what trope a word is linking to, without leaving the page. 

See the source code, report issues or add suggestions on GitHub: https://github.com/spookyuser/laconic_hover

----
v1.7.0
- Fixed a weird bug where what happened was nothing worked, thanks @savannah!
- Also rewrote it ig?

v1.6.0 Update:
- Fixed everything not working

v1.5.0 Update:
- Improve link redirection handling (thanks @Bpendragon)
- Improve charset error handling (thanks @charset)
- Switch to ts (thanks @me)
- Reduce cache size?

v1.4.2 Update:
- Fixes an issue where hovering caused text to break on chrome (thanks @eroock!)

v1.4.1 Update: 
- Updated to tippy js v6.x
- Tropes in images now follow your cursor
- Fixed an issue where popovers would not flip to the bottom when there's no space above them
- Miscellaneous behind the scenes refactoring 🤷‍♂️

v1.3.0 Update:
- Update dependencies
- Fix serious crash on Firefox                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Laconic Hover for TV Tropes Laconic Hover for TV Tropes
ID ignndocldlheghlflchdbokagecncgmm
Επίσημο URL https://chromewebstore.google.com/detail/laconic-hover-for-tv-trop/ignndocldlheghlflchdbokagecncgmm
Περιγραφή Did you know that most tropes have thoughtfully written summaries? This extension lets you read them without leaving the page.
Μέγεθος Αρχείου 35.01 KB
Αριθμός Εγκαταστάσεων 147
Τρέχουσα Έκδοση 1.7.1
Τελευταία Ενημέρωση 2023-10-05
Ημερομηνία Δημοσίευσης 2020-06-11
Αξιολόγηση 5.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Spooky User
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/spookyuser/Laconic_Hover
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/spookyuser/Laconic_Hover
URL της Σελίδας Πολιτικής Απορρήτου https://gist.github.com/spookyuser/38c971aeb87985fbaf72d838f7718ff4
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.plasmo.6c567d50.png",
        "32": "icon32.plasmo.76b92899.png",
        "48": "icon48.plasmo.aced7582.png",
        "64": "icon64.plasmo.8bb5e6e0.png",
        "128": "icon128.plasmo.3c1ed2d2.png"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icon16.plasmo.6c567d50.png",
            "32": "icon32.plasmo.76b92899.png",
            "48": "icon48.plasmo.aced7582.png",
            "64": "icon64.plasmo.8bb5e6e0.png",
            "128": "icon128.plasmo.3c1ed2d2.png"
        }
    },
    "version": "1.7.1",
    "author": "Spooky User",
    "name": "Laconic Hover for TV Tropes",
    "description": "Did you know that most tropes have thoughtfully written summaries? This extension lets you read them without leaving the page.",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/tvtropes.org\/*"
            ],
            "js": [
                "content.903826e2.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "content.818396ff.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/tvtropes.org\/*"
    ]
}