Custom sites
create a website style
Vad är Custom sites?
Custom sites är en Chrome-tillägg utvecklad av akimovivan355, och dess huvudfunktion är "create a website style".
Tilläggsskärmbilder
Ladda ner Custom sites-förlängningens CRX-fil
Ladda ner Custom sites-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
the application allows you to customize the interface of google and youtube. Select separate colors for the text of the background links using the full RGB palette for each site separately, the colors can be reset if necessary Grundläggande Information om Tillägg
| Namn | |
| ID | hiadibhippamgikegbcbfagpalmfoonh |
| Officiell webbadress | https://chromewebstore.google.com/detail/custom-sites/hiadibhippamgikegbcbfagpalmfoonh |
| Beskrivning | create a website style |
| Filstorlek | 45.04 KB |
| Antal Installationer | 42 |
| Aktuell Version | 4.1 |
| Senast Uppdaterad | 2023-01-24 |
| Publiceringsdatum | 2021-09-01 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | akimovivan355 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Custom sites",
"description": "create a website style",
"version": "4.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"icons": {
"48": "image 3.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentscript.js"
]
}
],
"permissions": [
"storage",
"activeTab"
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"*:\/\/*.google.com\/"
]
} | |