Turn images upside down
Turn images upside down
Vad är Turn images upside down?
Turn images upside down är en Chrome-tillägg utvecklad av lu1s, och dess huvudfunktion är "Turn images upside down".
Tilläggsskärmbilder
Ladda ner Turn images upside down-förlängningens CRX-fil
Ladda ner Turn images upside down-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
This extension, when clicked, will turn every image upside down usign css rotate and a transition effect. When clicking again, it will turn them back to their original position. Grundläggande Information om Tillägg
| Namn | |
| ID | dkfmdnojipbgbfafjbiinbjjdbeclbin |
| Officiell webbadress | https://chromewebstore.google.com/detail/turn-images-upside-down/dkfmdnojipbgbfafjbiinbjjdbeclbin |
| Beskrivning | Turn images upside down |
| Filstorlek | 27.05 KB |
| Antal Installationer | 39 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2020-04-02 |
| Publiceringsdatum | 2020-03-27 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | lu1s |
| Betalningssätt | free |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Turn images upside down",
"version": "0.0.1",
"manifest_version": 2,
"description": "Turn images upside down",
"homepage_url": "http:\/\/luispulido.com",
"icons": {
"16": "favicon-16.png",
"48": "favicon-48.png",
"128": "favicon-128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_title": "Turn images upside down"
},
"permissions": [
"activeTab"
]
} | |