chrome-usercss-hogashi
usercss for each site
Hvad er chrome-usercss-hogashi?
chrome-usercss-hogashi er en Chrome-udvidelse udviklet af hogashi, og dens hovedfunktion er "usercss for each site".
Udvidelsesskærmbilleder
Download chrome-usercss-hogashi-udvidelses-CRX-fil
Download chrome-usercss-hogashi-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
UserCSS をサイトごとに挿入する拡張機能です。サイトは hostname ごとに区別され、それぞれのサイトにそれぞれの UserCSS を設定できます。
利用に責任を負いません。他人から渡された信用できないコードは入力しないでください。 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | bddeakjniijkggfocbdngafgdjkljkje |
| Officiel URL | https://chromewebstore.google.com/detail/chrome-usercss-hogashi/bddeakjniijkggfocbdngafgdjkljkje |
| Beskrivelse | usercss for each site |
| Filstørrelse | 1.67 MB |
| Antal Installationer | 19 |
| Nuværende Version | 0.4.1 |
| Senest Opdateret | 2022-01-16 |
| Udgivelsesdato | 2020-12-26 |
| Udvikler | hogashi |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://hogashi.hatenablog.com |
| URL til Fortrolighedspolitik Side | https://github.com/hogashi/twitterOpenOriginalImage/blob/master/privacy-policy.md |
| Understøttede Sprog | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "chrome-usercss-hogashi",
"version": "0.4.1",
"description": "usercss for each site",
"author": "hogashi",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"index.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "chrome-usercss-hogashi",
"default_popup": "popup.html"
},
"options_page": "popup.html"
} | |