Custom Stylesheet & Script
Inserts a custom stylesheet and script into every web page.
什麼是Custom Stylesheet & Script?
Custom Stylesheet & Script是由https://rufflewind.com開發的Chrome擴展程式,該擴展的主要功能是“Inserts a custom stylesheet and script into every web page.”。
擴展截圖
下載Custom Stylesheet & Script擴展crx文件
下載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 |
官方網址 | 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" } } } |