Link Icon
Know where you're going to before clicking on a link.
Τι είναι το Link Icon;
Το Link Icon είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον pb_ee1, και η κύρια λειτουργία του είναι "Know where you're going to before clicking on a link.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Link Icon
Λήψη αρχείων επέκτασης Link Icon σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Displays an icon next to your cursor when hovering a link indicating what the target points to. Will it open a new window, trigger a JavaScript event, display a PDF file or download a program? You will know all of that without having to click on the link. This extension has an option page that let you select which icons should be displayed. Currently, it supports the indicators below: * Windows: New window/tab * Protocols: ftp://, mailto:, irc://, aim://, file://, magnet: * Scripts: javascript: links, onclick attribute * Hosts: Link to Gmail * File types: Applications, Music, Word Documents, Presentations, Images, Photoshop Images, Java Applets & files, Javascript, JSON, CSS, PDF, ePUB, Registry files, Torrents, Text files, Spreadsheets, Google Chrome Extensions, Archives, User scripts, Videos (including Quicktime, Real) * Security: Going to a secured webpage, Leaving a secured webpage * External: Leaving the website (has some limitations) (The extension can support more file types. If you want one added, please request it here.)
Βασικές Πληροφορίες Επέκτασης
Όνομα | Link Icon |
ID | cnjfiolbpeihgijepincpfjhigekegab |
Επίσημο URL | https://chromewebstore.google.com/detail/link-icon/cnjfiolbpeihgijepincpfjhigekegab |
Περιγραφή | Know where you're going to before clicking on a link. |
Μέγεθος Αρχείου | 88.38 KB |
Αριθμός Εγκαταστάσεων | 641 |
Τρέχουσα Έκδοση | 4.2 |
Τελευταία Ενημέρωση | 2014-10-13 |
Ημερομηνία Δημοσίευσης | 2014-10-13 |
Αξιολόγηση | 4.63/5 Συνολικά 40 Αξιολογήσεις |
Προγραμματιστής | pb_ee1 |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Link Icon", "version": "4.2", "description": "Know where you're going to before clicking on a link.", "icons": { "16": "images\/extension\/16.png", "48": "images\/extension\/48.png", "128": "images\/extension\/128.png" }, "author": "pb_ee1", "background": { "scripts": [ "eventPage.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "opentip\/opentip.css", "opentip\/opentip-custom.css" ], "js": [ "jquery-2.1.1.min.js", "opentip\/opentip-jquery.min.js", "link_icon.js", "tld.js", "engine.js" ], "run_at": "document_start", "all_frames": false } ], "options_page": "options.html", "short_name": "Link Icon" } |