-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add compatibility with Firefox. Fix bugs. Improve performance.
- Loading branch information
1 parent
4a849a4
commit 8692cd1
Showing
5 changed files
with
66 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
_metadata/ | ||
build/ | ||
.idea/ | ||
*.swp | ||
.DS_Store | ||
manifest.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Ћирилизатор", | ||
"description": "Претвара латиничне стране у ћириличне.", | ||
"author": "Јован Турањанин", | ||
"version": "3.0", | ||
"background": { | ||
"service_worker": "background.js" | ||
}, | ||
"action": { | ||
"default_icon": { | ||
"16": "icons/icon-off-16.png", | ||
"32": "icons/icon-off-32.png", | ||
"48": "icons/icon-off-48.png", | ||
"128": "icons/icon-off-128.png" | ||
}, | ||
"default_title": "Ћирилизуј" | ||
}, | ||
"icons": { | ||
"16": "icons/icon-on-16.png", | ||
"32": "icons/icon-on-32.png", | ||
"48": "icons/icon-on-48.png", | ||
"128": "icons/icon-on-128.png" | ||
}, | ||
"declarative_net_request": { | ||
"rule_resources" : [{ | ||
"id": "map", | ||
"enabled": true, | ||
"path": "latin-cyrillic-domains.json" | ||
}] | ||
}, | ||
"permissions": [ | ||
"declarativeNetRequestWithHostAccess", | ||
"scripting", | ||
"storage", | ||
"tabs" | ||
], | ||
"host_permissions": [ | ||
"<all_urls>" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
window.location.reload(); | ||
|