Custom Stylesheet & Script
Inserts a custom stylesheet and script into every web page.
Τι είναι το Custom Stylesheet & Script;
Το Custom Stylesheet & Script είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://rufflewind.com, και η κύρια λειτουργία του είναι "Inserts a custom stylesheet and script into every web page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Custom Stylesheet & Script
Λήψη αρχείων επέκτασης Custom Stylesheet & Script σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is simple extension that inserts custom JavaScript and CSS code into each web page, allowing you to modify the way it behaves and looks. The default installation does nothing. You'll have to provide the script and stylesheet yourself. An example can be found here: https://github.com/Rufflewind/chrome_script/tree/master/example To edit the script and stylesheet, go to chrome://extensions and click "Options" under "Custom Stylesheet & Script". The text areas in the "Options" tab will automatically save as you edit. Existing pages are not affected until refreshed. Note: jQuery NOT included anymore as of 2.0.0. Bug reports: https://github.com/Rufflewind/chrome_script/issues Changelog: https://github.com/Rufflewind/chrome_script/releases
Βασικές Πληροφορίες Επέκτασης
Όνομα | Custom Stylesheet & Script |
ID | hojkciooaohipljgobfikbkjcehockld |
Επίσημο URL | https://chromewebstore.google.com/detail/custom-stylesheet-script/hojkciooaohipljgobfikbkjcehockld |
Περιγραφή | Inserts a custom stylesheet and script into every web page. |
Μέγεθος Αρχείου | 13.94 KB |
Αριθμός Εγκαταστάσεων | 833 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2019-07-16 |
Ημερομηνία Δημοσίευσης | 2019-07-15 |
Αξιολόγηση | 3.57/5 Συνολικά 14 Αξιολογήσεις |
Προγραμματιστής | https://rufflewind.com |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Rufflewind/chrome_script |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/Rufflewind/chrome_script/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.1.0", "name": "Custom Stylesheet & Script", "description": "Inserts a custom stylesheet and script into every web page.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "*:\/\/*\/" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" } ], "commands": { "options": { "description": "Open options" } } } |