├── .gitignore ├── icons └── bookmark.png ├── _locales ├── tr │ └── messages.json ├── zh_Hans │ └── messages.json ├── nl │ └── messages.json ├── en │ └── messages.json ├── pl │ └── messages.json └── de │ └── messages.json ├── .gitea └── issue_template │ ├── fr_template.yaml │ └── bug_template.yaml ├── scripts ├── popup.html ├── popup.min.js ├── options.html ├── popup.js ├── popup.min.css ├── options.min.css ├── popup.css ├── options.css ├── options.min.js ├── background.min.js └── options.js ├── manifest.json ├── README.md ├── CHANGELOG.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .web-extension-id 2 | web-ext-artifacts/ 3 | *.asc 4 | -------------------------------------------------------------------------------- /icons/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Offerel/SyncMarks-Extension/HEAD/icons/bookmark.png -------------------------------------------------------------------------------- /_locales/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensionName": { 3 | "message": "SyncMarks" 4 | }, 5 | "extensionDescription": { 6 | "message": "Yer işaretlerini ve sekmeleri kendi kendine barındırılan bir sunucu ile eşlemek için bu uzantıyı kullanın." 7 | }, 8 | "optionsServerURL": { 9 | "message": "Sunucu Adresi" 10 | }, 11 | "optionsUsername": { 12 | "message": "Kullanıcı adı" 13 | }, 14 | "optionsPassword": { 15 | "message": "Parola" 16 | }, 17 | "optionsSyncOptions": { 18 | "message": "Seçenekler" 19 | }, 20 | "optionsBTNImport": { 21 | "message": "İndir" 22 | }, 23 | "optionsBTNSettingsHint": { 24 | "message": "Yedekleme ayarları" 25 | }, 26 | "optionsBTNExport": { 27 | "message": "Yükle" 28 | }, 29 | "optionsBTNSave": { 30 | "message": "Kaydet" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /.gitea/issue_template/fr_template.yaml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | about: File a feature request 3 | title: '[FR]: ' 4 | body: 5 | - type: input 6 | id: version 7 | attributes: 8 | label: Current version 9 | description: Whats the current version of the plugin where you are missing this feature? 10 | placeholder: ex. v1.5.7 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: feature-description 15 | attributes: 16 | label: What? 17 | description: Please describe in detail, what you want to have as feature 18 | placeholder: '' 19 | value: '' 20 | validations: 21 | required: true 22 | - type: textarea 23 | id: why 24 | attributes: 25 | label: Why? 26 | description: What is not possible, if this feature will not be added? 27 | validations: 28 | required: true 29 | - type: textarea 30 | id: workaround 31 | attributes: 32 | label: Workaround 33 | description: If you think there is a workaround, please let me know. 34 | validations: 35 | required: true -------------------------------------------------------------------------------- /.gitea/issue_template/bug_template.yaml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | about: File a bug report 3 | title: '[Bug]: ' 4 | body: 5 | - type: textarea 6 | id: bug-description 7 | attributes: 8 | label: Description 9 | description: Please describe in detail, whats the problem 10 | placeholder: '' 11 | value: '' 12 | validations: 13 | required: true 14 | - type: input 15 | id: version 16 | attributes: 17 | label: Version 18 | description: What version of the plugin you find the issue? 19 | placeholder: ex. v1.5.7 20 | validations: 21 | required: true 22 | - type: dropdown 23 | id: browsers 24 | attributes: 25 | label: What browsers are you seeing the problem on? 26 | value: '' 27 | multiple: true 28 | options: 29 | - Firefox 30 | - Chrome 31 | - Chromium 32 | - Safari 33 | - Microsoft Edge 34 | - type: textarea 35 | id: browser-logs 36 | attributes: 37 | label: Log from the Browser Dev Console 38 | description: Please copy and paste the out put of errors from the Dev Console. This will be automatically formatted into code. 39 | render: shell 40 | validations: 41 | required: true -------------------------------------------------------------------------------- /scripts/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |