Memo On Websites
leave a memo on each website
Vad är Memo On Websites?
Memo On Websites är en Chrome-tillägg utvecklad av wudy, och dess huvudfunktion är "leave a memo on each website".
Tilläggsskärmbilder
Ladda ner Memo On Websites-förlängningens CRX-fil
Ladda ner Memo On Websites-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
leave a memo on each website easily.
+ Sub domains are treated as separate websites.
(Example)
docs.google.com
map.google.com
+ Except for www
(Example)
www.google.com -> google.com Grundläggande Information om Tillägg
| Namn | |
| ID | cmcojnfblbfceeplflcbkejdodpfgjcc |
| Officiell webbadress | https://chromewebstore.google.com/detail/memo-on-websites/cmcojnfblbfceeplflcbkejdodpfgjcc |
| Beskrivning | leave a memo on each website |
| Filstorlek | 12.32 KB |
| Antal Installationer | 343 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2017-12-07 |
| Publiceringsdatum | 2017-12-06 |
| Betyg | 5.00/5 Totalt 6 Betyg |
| Utvecklare | wudy |
| Betalningssätt | free |
| Stödda Språk | en,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Memo On Websites",
"author": "koosi",
"homepage_url": "https:\/\/github.com\/koosi",
"version": "1.0.0",
"default_locale": "en",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img\/icon_16.png",
"32": "img\/icon_32.png",
"128": "img\/icon_128.png"
},
"browser_action": {
"default_icon": "img\/disable_icon_128.png",
"default_title": "__MSG_browserActionTitle__",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content-script.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"unlimitedStorage",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"minimum_chrome_version": "22.0",
"short_name": "MemoOnWebsites"
} | |